Skip to content

Latest commit

 

History

History
42 lines (30 loc) · 940 Bytes

README.md

File metadata and controls

42 lines (30 loc) · 940 Bytes

WIP

Attempt to create a bitsery adapter that uses liburing for better performance.

Requirements

This project depends on bitsery and on liburing. It also provides a FindIoUring.cmake find module for liburing for easier setup. So you need to do two steps:

git clone https://github.com/fraillt/bitsery
cd bitsery
mkdir build && cd build
cmake .. && make install
git clone https://github.com/axboe/liburing
cd liburing
make install 

and you're ready to go ;)

How to develop

(from project root)
mkdir build && cd build
cmake ..
make
ctest

TODO

  • implement adapter that uses liburing
  • discuss how to make it easier for users to use it