Databases using JSON as storage/transport format

43,173

Solution 1

MongoDb is the one that uses a binary JSON storage format. I don't know if there is another that is document oriented. Most of the others are key value stores and can only retrieve an object based on one key.

Solution 2

Persevere is another DB that is loaded up with JSON:

http://www.persvr.org/

Primary transport is JSON HTTP/REST

Data is stored as JSON

It has a native JS/JSON client for running directly from the browser.

If you want a schema then it is defined using JSON

Solution 3

This is a non-authoritative list.

Source: Wikipedia - Document Oriented Databases

Solution 4

postgresql recently added a json datatype

postgre json datatype

Solution 5

MongoDB does not use JSON but BSON.

RethinkDB is a document oriented database with a JSON data model, which supports sharding and replication

Share:
43,173
user5880801
Author by

user5880801

http://igstan.ro http://bucharestfp.ro

Updated on August 03, 2020

Comments

  • user5880801
    user5880801 over 3 years

    How many database systems there are that use JSON for storage or transport? I know of:

    I remember I saw yet another vendor in a SO user's profile. That systems was using what they called binary JSON, but I can't remember the name of the product.

    Lately, it appears that more and more DB projects are looking towards JSON for persistence storage. Some of them are even embracing HTTP as a transport layer.