2 مستودعات
Systems that mimic the behavior and API of a specific database engine to support existing drivers on a different backend.
Distinct from Document-Relational Databases: Distinct from Document-Relational Databases by focusing on the emulation of a specific external API (e.g. MongoDB) rather than just a hybrid storage model.
Explore 2 awesome GitHub repositories matching data & databases · Database Emulators. Refine with filters or upvote what's useful.
FerretDB is an open-source database emulator and protocol translator that mimics a MongoDB environment to support existing drivers and client tools on a relational backend. It functions as a stateless database proxy that converts binary wire protocol messages into SQL statements, allowing a relational engine to handle document-oriented requests. The project serves as a migration tool for moving applications from MongoDB to PostgreSQL without rewriting queries or changing client drivers. It achieves this by using PostgreSQL as a document store, storing and querying BSON documents through a tra
Mimics a MongoDB database server to support compatible drivers while using a relational backend.
H2 is a JDBC-compliant relational database management system written in Java. It functions as an embeddable SQL database that can run directly within an application process to remove network latency, or as an in-memory database for high-performance volatile storage. It also includes a web-based console for executing SQL commands and administering schemas. The system is characterized by its flexible deployment modes, including a standalone server mode for remote TCP/IP access and a mixed mode for simultaneous local and remote connectivity. It features a dialect emulation layer and compatibilit
Mimics the behavior and syntax of other database engines to maintain compatibility with existing applications.