Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Databases using JSON as storage/transport format [closed]

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

  • CouchDB
  • MongoDB
  • DBSlayer

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.

like image 562
Ionuț G. Stan Avatar asked May 12 '09 15:05

Ionuț G. Stan


Video Answer


4 Answers

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

like image 178
Jason Avatar answered Sep 25 '22 00:09

Jason


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.

like image 25
Sam Corder Avatar answered Sep 22 '22 00:09

Sam Corder


This is a non-authoritative list.

  • CouchDB
  • FleetDB
  • MongoDB
  • OrientDB
  • Apache Cassandra
  • Redis
  • RavenDB

Source: Wikipedia - Document Oriented Databases

like image 40
ProllyGeek Avatar answered Sep 22 '22 00:09

ProllyGeek


postgresql recently added a json datatype

postgre json datatype

like image 30
alzclarke Avatar answered Sep 25 '22 00:09

alzclarke