python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Performance issue in Golang's key-value store (Badger DB)
In badgerDB, we have billions of keys of type string and values of type HashValueList. In our use case length of HashValueList might be in millions. We have to encode key and value in []byte before in...

Vishal Jangid
Votes: 0
Answers: 1
what does it mean "class LEVELDB_EXPORT Status" in leveldb?
I found that "LEVELDB_EXPORT" is predefined in "export.h" .
class LEVELDB_EXPORT DB{
}
#define LEVELDB_EXPORT
but i don't know which usage it is.

buting
Votes: 0
Answers: 1
In LevelDB, are all the keys loaded in memory?
So, I have been reading about the implementation of LevelDB and other key-value stores which use the Log Structured Merge Tree in their implementation. I had a couple of questions on this:
Are all th...
Anon
Votes: 0
Answers: 2
Using C++ protobuf formatted structure in leveldb. set/get operations
I'd like to make a POC of using leveldb in order to store key-value table of different data types in protobuf format.
So far I was able to open the database file, and I also saw the get function with ...
Zohar81
Votes: 0
Answers: 1