NuDB icon indicating copy to clipboard operation
NuDB copied to clipboard

NuDB: A fast key/value insert-only database for SSD drives in C++11

Results 37 NuDB issues
Sort by recently updated
recently updated
newest added

A tool command to create a test database filled up to a certain number of gigabytes could be useful for testing and benchmarking.

After launch, NuDB needs to be promoted on social media and places like StackOverflow, programming forums, etc

Need to take stock of all detected errors in the verify and recover functions, make sure they are distinguished and appropriate. Also look into `open` and `create`, see if we...

Need a command to split a database into two. This could work conceptually by iterating the data file and writing a new data/key file until reaching the halfway point in...

Need inline namespace so that breaking changes can be versioned. Or an alternative to inline namespaces that allows the choice of version to be selected at runtime.

I've been experimenting with NuDB and ran into the following issue - I would like to have multiple worker threads access the database concurrently, entirely read-only. There seems to be...

Just wanted to check my understanding. From the looks of things this does not support delete or upsert operations, presumably by design and is not needed for your use case?...