mabain icon indicating copy to clipboard operation
mabain copied to clipboard

a fast and light-weighted key-value store library

Results 6 mabain issues
Sort by recently updated
recently updated
newest added

One example of the use case: find out all IP addresses within certain range.

When using disk storage for high volume of insertions, the mabain insertion performance starts to degrade when there are a few hundreds of millions of key-value pairs. This is because...

Currently, mabain DB handles are not thread safe. This means each thread need to open its own DB handle. It is desirable to make the DB handle thread-safe so that...

When running in async mode, mabain can handle insertions concurrently with resource collection (or defragmentation). Need to extend this for removing kv pairs.

One possible solution is to use snappy for compress the data part.