Size: 13
Comment:
|
Size: 737
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 2: | Line 2: |
* https://couchdb.apache.org/ * https://cwiki.apache.org/confluence/display/COUCHDB/Introduction Clustered database that allows you to run a single logical database server on any number of servers or VMs. Seamless multi-master sync, that scales from Big Data to Mobile, with an intuitive HTTP/JSON API and designed for Reliability. == python CouchDB lib == * pip3 install CouchDB * https://couchdb-python.readthedocs.io/en/latest/client.html# {{{#!highlight python import couchdb server = couchdb.client.Server('http://user:pwd@example.org/dbx/') db = server['dbtest'] print( db.info() ) doc = db['00998876870c1935a6d2de43ade4'] print( doc ) for row in db.view('_all_docs'): print(row.id) }}} |
CouchDB
Clustered database that allows you to run a single logical database server on any number of servers or VMs.
Seamless multi-master sync, that scales from Big Data to Mobile, with an intuitive HTTP/JSON API and designed for Reliability.
python CouchDB lib
- pip3 install CouchDB
https://couchdb-python.readthedocs.io/en/latest/client.html#