Reputation: 5817
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
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