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

During the hash expansion, the data in the hash bucket on the disk will be moved to the new bucket. Is the performance affected by the disk IO?

Unless the underlying filesystem is mounted with `noatime` then the system will keep track of and update a file's 'last access' time stamp with every `read` operation. Even if the...

CMake installation was missing some files. impl copy paste typo? impl-->detail include ALL detail files in install :|

The newer boost-ci codecov includes "everything", so ignore dirs in codecov.yml.

Include gcc-9,10,11 and clang-9,10,11,12 The results show that clang-10,11,12 are failing. Added a debugging section to display output from /drone/src/_cache/cmake_ep/ninja/*/Debug/src/rocksdb-stamp/rocksdb-build-*.log .

Hi, The C++ Alliance is currently working on a project to translate Travis jobs to both [Drone](https://www.drone.io/) and [Github Actions](https://github.com/features/actions) formats. Please check existing Travis jobs, if they have errors:...

This would be useful for situations in which the database filesystem / files are not writeable by the local process but read functionality is desired. Mirrors the existing **open** API...

Since in the examples and most implementations NuDB will use 'nudb.[dat|key|log]' files to persistently store the DB, this patch simplifies this 'default' scenario, allowing the end user to create and...

Currently ever key file that gets created is different due to the different salt that gets chosen. It would be nice to be able to optionally specify the salt.

Greetings! I've been exploring & diving into this library into the context of reading data directly from a **live** rippled nodestore. Periodically a fetch operation will sporadically fail with the...