Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Difference between Derby and CouchDB

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

1. Derby :
Derby is a full-featured, open-source relational database management system (RDBMS) implemented in Java and as the name suggests it is developed by Apache Software Foundations. It is based on Java, JDBC and SQL standards. Derby is easy to install, deploy, and use. It is either embedded into a Java application or used as a database server.

2. CouchDB :
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.


Difference between Derby and CouchDB :

SR.No.DerbyCouchdb
1It is developed by Apache Software Foundation in 1997.It is developed by Apache Software Foundation in 2005.
2It is written in Java language.It is written in Erlang language.
3The primary database model for Derby is Relational DBMS.The primary database model for CouchDB is Document Store.
4Server operating systems for Derby are Windows, macOs, Linux, Unix, BSD and z/OS.CouchDB server operating systems are Android, BSD, Linux, OS X, Solaris and Windows.
5APIs and other access methods used by Derby is JDBC.APIs and other access methods used by CouchDB is RESTful HTTP/JSON API.
6It support only Java programming language.It supports C, C#, ColdFusion, Erlang, Java, JavaScript, PHP, PL/SQL, Python, Ruby, etc.
7It support Master-Slave Replication methods.It support Master-master replication, Master-slave replication.
8In Derby, partitioning cannot be done.In CouchDB, partitioning can be done by Sharding.
9It is a open source software framework.It is a open source software framework.
10It support fine grained access rights according to SQL-standard.It also support access right for users.

My Personal Notes arrow_drop_up
Last Updated : 30 Jul, 2020
Like Article
Save Article
Similar Reads