📜  Derby和Pouchdb之间的区别

📅  最后修改于: 2021-08-25 18:15:14             🧑  作者: Mango

1.德比:
Derby是用Java实现的功能齐全的开源关系数据库管理系统(RDBMS),顾名思义,它是由Apache Software Foundations开发的。它基于Java,JDBC和SQL标准。 Derby易于安装,部署和使用。它可以嵌入Java应用程序中,也可以用作数据库服务器。

2. PouchDB:
PouchDB是一个开源的NoSQL嵌入式数据库。它是在CouchDB之后设计的,CouchDB是为npm提供支持的NoSQL数据库。它是用JavaScript语言编写的。由于PouchDB驻留在浏览器中,因此无需通过网络执行查询,因此它的速度非常快。它在浏览器中使用IndexedDB和WebSQL在本地存储数据。

Derby和Pouchdb之间的区别:

S.NO. Derby Pouchdb
1 It is developed by Apache Software Foundation in 1997. It is developed by Apache Software Foundation in 2012.
2 It is written in Java language. It is written using Javascript language.
3 The primary database model for Derby is Relational DBMS. The primary database model for PouchDB is Document Store.
4 Server operating systems for Derby are Windows, macOs, Linux, Unix, BSD and z/OS. PouchDB server operating systems are server-less, requires a JavaScript environment (browser, Node.js).
5 APIs and other access methods used by Derby is JDBC. APIs and other access methods used by PouchDB is HTTP REST, JavaScript API.
6 It supports only Java programming language. It supports only Javascript programming language.
7 It supports Master-Slave Replication methods. It supports Master-master replication, Master-slave replication.
8 In Derby, partitioning cannot be done. In PouchDB, partitioning can be done by Sharding.
9 It is a open source software framework. It is a open source software framework.
10 It supports fine grained access rights according to SQL-standard. It does not support access right.