Cashed is a caching server built entirely in plain c. It is similar in functionality to Memcached, providing a very simple unsecured (not SSLed) tcp api interface.
you can also directly connect to the server using telnet or netcat.
Install dependencies :
Download source code :
git clone https://github.com/RohanVDvivedi/Cashed.git
Build from source :
cd Cashedmake clean all
Install from the build :
sudo make install- Once you have installed from source, you may discard the build by
make clean
- add
-lcashed -lconnman -lboompar -llockking -lpthread -lcutlerylinker flag, while compiling your application - do not forget to include appropriate public api headers as and when needed. this includes
#include<cashed_hashtable.h>
Uninstall :
cd Cashedsudo make uninstall