Open In App

Difference between CouchDB and Relational Database

Improve
Improve
Like Article
Like
Save
Share
Report

1. CouchDB :
Apache CouchDB is an open-source document-oriented NoSQL database that uses multiple formats and protocols to store, transfer, and process its data, it uses JSON to store data, JavaScript as its query language using MapReduce, and HTTP for an API. It was developed by Apache Software Foundation and initially released in 2005. It is written in Erlang.

2. Relational Database :
RDBMS stands for Relational Database Management Systems. It is most popular database. In it, data is store in the form of row that is in the form of tuple. It contain numbers of table and data can be easily accessed because data is store in the table. This Model was proposed by E.F. Codd.



Difference between CouchDB and Relational Database :

CouchDB Relational Database
It is developed by Apache Software Foundation and initially released in 2005. It is developed by Oracle on May 1995.
It is written in Erlang language. It is developed in C and C++ languages.
The primary database model for CouchDB is Document Store. The primary database model for relational database  is client/server model.
It can handle only one connection at a time. It can handle multiple connections simultaneously.
It does support XML data format. It does not supports XML data format.
In CouchDB, there is no predefined datatypes. It supports predefined datatypes such as float, date, number, etc.
It does not support Secondary indexes. It supports Secondary indexes.
It does not support ACID transactions. It provides ACID transactions.
It supports Map Reduce method. It does not support Map Reduce method.
It has no Data Schema. It has Data Schema.


Last Updated : 13 Jul, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads