NoSQL is a whole new way of thinking about a database. NoSQL is not a relational database. The reality is that a relational database model may not be the best solution for all situations. The easiest way to think of NoSQL, is that of a database which does not adhering to the traditional relational database management system (RDMS) structure. Sometimes you will also see it revered to as 'not only SQL'.
"It is not built on tables and does not employ SQL to manipulate data."
Then how you can retreive data from NoSQL DB?
You can store the data by exposing it using REST based service but Not necessarily all services are REST based.But, all NOSqls provide some API for all major languages like java, .net etc.
Key/Value – Redis | Column – Cassandra | Document-MongoDB | Graph – Ne04J | |
Best used : | Quickly storing data for – sometimes frequent – future use. Redis supports lists, sets,queues and more. | When you need to store data so huge that it doesn't fit on server, but still want a friendly familiar interface to it. | If you need dynamic queries. If you prefer to define indexes, not map/reduce functions. If you need good performance on a big DB. If you wanted CouchDB, but your data changes too much, filling up disks. | Very good for storing information about the relationships between things. |
For Example : | To store unstructured data. | Web analytics, to count hits by hour, by browser, by IP, etc. Transaction logging. Data collection from huge sensor arrays. | For most things that you would do with MySQL or PostgreSQL, but having predefined columns really holds you back. | Mostly used by social networking sites like Linked in, Facebook to navigate user and suggest mutual friends. |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
25 | |
13 | |
13 | |
12 | |
10 | |
9 | |
9 | |
8 | |
6 | |
6 |