Michael Ramos
Michael Ramos

Reputation: 5817

When should you use RocksDB or LevelDB

In the scenario where you've stored ~1TB of key/value, and need to provide a production API to 1000s of users.

Further, the store will only be used for read operations only (after 1-time initial write)

Upvotes: 0

Views: 1302

Answers (1)

Asad Awadia
Asad Awadia

Reputation: 1521

You should use rocksdb and also hold the data in your ram, as much as possible, and serve responses from there (the more the better)

Upvotes: 0

Related Questions