Google News
logo
CouchDB - Interview Questions
What is the usage of CouchDB?
CouchDB facilitates developers to write a client-side application which interacts directly to the Couch without the need of server-side middle layer. It reduces the time of development and handling replication. Its database is stored locally so the application can run almost no latency. The main objective of CouchDB is to run on the internet applications and the connected devices through which we access the internet.
 
* CouchDB has an HTTP-based REST API, which makes communication with the database very easy.
* CouchDB has the simple structure of HTTP resources and methods (GET, PUT, and DELETE) that are easy to understand and use.
* In CouchDB, data is stored in the flexible document-based structure so, there is no need to worry about the structure of the data.
* CouchDB facilitates users with powerful data mapping, which allows querying, combining, and filtering the information.
* CouchDB provides easy-to-use replication, using which you can copy, share, and synchronize the data between databases and machines.
Advertisement