Skip to content

Latest commit

 

History

History
55 lines (39 loc) · 1.38 KB

README.md

File metadata and controls

55 lines (39 loc) · 1.38 KB

What is this

Memory object caching system

Why boostcache?

For now it is boost because used boost tree, but maybe in future it will be boost because it is fast.

Build status and benchmarks

Build Status and Benchmarks

Coverity scan

boostcache benchmarks

Used libraries

Building

boostcache is using cmake for it

You can also view into .travis.yml, but in short you can run next commands on debian like distribution:

sudo apt-get install libboost1.54-all-dev

mkdir .cmake
cd .cmake
cmake ..
make

# Add autocompletion for bash
. ../utils/bash_completion
# Run server
./boostcached -f
# Run CLI client
../utils/boostcache
Go ahead!