📜  Derby和MongoDB之间的区别

📅  最后修改于: 2021-08-27 18:27:42             🧑  作者: Mango

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

2. MongoDB:
MongoDB是一个跨平台的面向文档的非关系(即NoSQL)数据库程序。它是一个开放源代码文档数据库,以键值对的形式存储数据。 MongoDB由MongoDB Inc.开发,最初于2009年2月11日发布。它使用C++,Go,JavaScript, Python语言编写。 MongoDB提供高速,高可用性和高可伸缩性。

Derby和MongoDB之间的区别:

SR.NO Derby MongoDB
1 It is developed by Apache Software Foundation in 1997. It is developed by MongoDB Inc. on 2009.
2 It is written in Java language. It is written in C++ language.
3 The primary database model for Derby is Relational DBMS. The primary database model for MongoDB is Document store.
4 Server operating systems for Derby are Windows, macOs, Linux, Unix, BSD and z/OS. Server operating systems for MongoDB are Linux, OS X, Solaris and Windows.
5 It has Java Stored Procedures for Server-side scripts. It has Javascript for Server-side scripts.
6 It support Master-Slave Replication methods. It also support Master-Slave Replication methods.
7 APIs and other access methods used by Derby is JDBC. APIs and other access methods used by MongoDB is proprietary protocol using JSON.
8 It support only Java programming language. It support C, C#, C++, D, Delphi, Java, JavaScript, Lua, MatLab, Objective-C, Perl, PHP, PL/SQL, Python, R, Ruby, Scala, etc.
9 It provide XML support. It do not provide XML support.
10 It support fine grained access rights according to SQL-standard. It do not support access rights for user.
11 It does not support any Partitioning methods. In MongoDB, partitioning can be done by Sharding.
12 It does not supports Map Reduce method. It supports Map Reduce method.
13 It provides Immediate Consistency method to ensure consistency in a distributed system. It provides both Eventual Consistency and Immediate Consistency methods to ensure consistency in a distributed system.
14 It provides multi-document ACID transactions with snapshot isolation It provides ACID transactions.