Posts

Showing posts from February, 2020

Introduction to NoSQL

Image
                               Getting Started with NoSQL What is NoSQL?                  If we think of the original meaning of the word "NoSQL" it is referring to the meaning Non-relational. At times it is called Not Only SQL . because it supports . SQL like . query languages. One of the main features in NoSQL is that it has its own way of storing and retrieving data. Other than that It has its unique features such as  Distributed  Horizontally scalable  Easy Replication  Eventually Consistent  Open Source          and  No transaction support  The most popular examples of NoSQL are MongoDB and Cassandra. Why should we use NoSQL?               High Scalability and High availability are the main advantages you can gain by using NoSQL. Hig...

Getting Start With Application Frameworks

Image
What is an Application Framework? An application framework is a software library that provides a fundamental structure to support the development of applications for a specific environment. . It acts as the skeletal support to build an application. Application frameworks can be used in both graphical user interface development, and in other areas like web-based applications. By using application frameworks we can find solutions to the general issues faced during the development of applications. If you think the concept of Application frameworks is an emerged idea the answer is 'No'. It started around 1970 - 1990 with the SmallTalk user interface framework, MacApp (for Macintosh), and Struts (for Web-based Java applications). The Pros and Cons of using Application Frameworks     If you want to develop your code faster and easier Application Framework is the best bridge that can help you. You can use the pre-built functions in Application Frameworks to Increa...