Is it possible to use a noSQL document to store json objects?

I study noSQL, read about a document-based database and what noSQL is suitable for developers, can I set the document format as a json object?

For example, to store user profiles, report json ojbects and store json as is in the noSQL table? Is this the right way to move on?

+4
source share
2 answers

As a rule, and in most NoSQL document databases, use json (or, if you want to say what exactly BSON is) to store objects. for example, in the CouchDB and MongoDB datastore as a BSON object. BSON is a binary representation of JSON. when working with this database, you must save the JSON and get the JSON object. Therefore, in my opinion, you answered your question, because the document is really JSON.

I created a presentation, you can check it for more information
http://www.slideshare.net/HemanHosainpana/document-database

+6
source

Oops! this is usually the only way, for example MongoDB works with json / bson as the main document type.

, noSQL, "" . , sql nosql, , , , .

+1

All Articles