As mentioned in the rocksdb wiki, LRU Cache accepts some options.
As we are facing OOMs, the strict_capacity_limit seems a good option to use, but the gorocksdb.NewLRUCache only accepts the cache size.
Is there another way to set options? It would be possible to add it?
Thanks
As mentioned in the rocksdb wiki, LRU Cache accepts some options. As we are facing OOMs, the
strict_capacity_limit
seems a good option to use, but thegorocksdb.NewLRUCache
only accepts the cache size. Is there another way to set options? It would be possible to add it? Thanks