YAS is a header-only library that provides common key-value operations. At the moment the library supports unicode, 32/64 bit operation mode(in 32 bit size of PV is limited by 2**32 bytes but it implies less overhead) and heterogeneous devices.
For more info please see project wiki.
git clone https://github.com/michailvoronov/yet_another_storage
cd yet_another_storage
# build test binaries
make
# run tests
make tests
The default test binaries will be built in release mode. You can make Debug test binaries as well:
make clean
make debug
make tests
You can find project templates for VS 2017 and gcc 7 in examples. To change unicode support, bitness and devices please change the corresponding declarations in include/storage/settings.h.
- nonstd::expected (https://github.com/martinmoene/expected-lite) - header-only
- gtest (https://github.com/google/googletest) for tests