11 couchdb and {R4CouchDB}

Apache CouchDB is a non-relational or NoSQL database which was developed to fully embrace the web. Data is stored within JSON documents which can be accessed and its indices queried via HTTP. Indexing, transforming and combining of documents are performed through JavaScript. Because it uses all of these web-friendly standards and technologies, CouchDB works very well with web and mobile applications.
CouchDB is an open source document-oriented database which uses key-value maps for storing document fields. The fields can be simple key-value pairs, maps, or lists. Each document stored is given a document-level unique identifier and a revision number whenever there are changes made to it. CouchDB is able to do on-the-fly document transformation as well as present real-time change notifications, making web applications development easier.eval(ez_write_tag([[250,250],'techopedia_com-under_second_paragraph','ezslot_5',128,'0', 0])); It specializes in Availability and Partition Tolerance (AP) but can eventually be consistent through minor work. As a comparison, MongoDB is mostly Consistency and Partition Tolerant. CouchDB features: Quick indexing and retrievalEasy replication across multiple server instancesMultiple libraries for different languagesJSON-based document formatREST-like interface for document retrieval, deletion, updates and insertionData feed updates which are subscribable through the changes feed

From: https://www.techopedia.com/definition/30316/couchdb

docker pull couchdb:2.3.1
docker run --rm --name couchdb --net r-db couchdb:2.3.1

In R

library(R4CouchDB)
con <- cdbIni("couchdb")
con$queryParam <- "count=10"
cdbGetUuidS(con)