Slabby is a fixed sized cache memory allocator. Based on the Slab memory allocation, designed by Bonvick.
references : His paper here and Wikipedia Article
Install dependencies :
Download source code :
git clone https://github.com/RohanVDvivedi/Slabby.git
Build from source :
cd Slabbymake clean all
Install from the build :
sudo make install- Once you have installed from source, you may discard the build by
make clean
- add
-lslabby -lpthread -lcutlerylinker flag, while compiling your application - do not forget to include appropriate public api headers as and when needed. this includes
#include<slabby/cache.h>
Uninstall :
cd Slabbysudo make uninstall