No features have been listed yet.
Based on our record, RocksDB seems to be a lot more popular than MapDB. While we know about 13 links to RocksDB, we've tracked only 1 mention of MapDB. We are tracking product recommendations and mentions on various public social media platforms and blogs. They can help you identify which product is more popular and what people think of it.
When we started building Qdrant, we needed to pick something ready for the task. So we chose RocksDB as our embedded key-value store. - Source: dev.to / 3 months ago
One thing you should know is that the K8s architecture is optimized for stateless applications, which don't store changing information within themselves and whose output depend solely on input from the user or auxiliary processes. Conduit, on the contrary, is tightly coupled with its high-performance database, RocksDB, and has stateful behavior. That's why we need to take extra care by not replicating our process... - Source: dev.to / 8 months ago
RocksDB: A high-performance embedded database optimized for multi-core CPUs and fast storage like SSDs. Its use of a log-structured merge-tree (LSM tree) makes it suitable for applications requiring high throughput and efficient storage, such as streaming data processing. - Source: dev.to / about 1 year ago
[RocksDB](https://rocksdb.org/) isn’t a distributed storage system, fwiw. It’s an embedded KV engine similar to LevelDB, LMDB, or really sqlite (though that’s full SQL, not just KV). - Source: Hacker News / about 1 year ago
To output the top 3 rocks, our engine has to first store all the rocks in some sorted way. To do this, we of course picked RocksDB, an embedded lexicographically sorted key-value store, which acts as the sorting operation's persistent state. In our RocksDB state, the diffs are keyed by the value of weight, and since RocksDB is sorted, our stored diffs are automatically sorted by their weight. - Source: dev.to / over 1 year ago
In Java I like https://mapdb.org/ It is more feature rich than you want but in Python I'd probably just use sqlite3 since it is in the standard library. - Source: Hacker News / about 3 years ago
Redis - Redis is an open source in-memory data structure project implementing a distributed, in-memory key-value database with optional durability.
memcached - High-performance, distributed memory object caching system
SQLite - SQLite Home Page
MongoDB - MongoDB (from "humongous") is a scalable, high-performance NoSQL database.
Aerospike - Aerospike is a high-performing NoSQL database supporting high transaction volumes with low latency.
PostgreSQL - PostgreSQL is a powerful, open source object-relational database system.