A very fast kyoto cabinet powered memcache interface http proxy caching server.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
all:
|
|
|
mkdir -p out
|
|
|
gcc -I/usr/local/include -I~/Downloads/libuv-0.10.12/include ./src/main.c -o ./out/fast-cache -L/usr/local/lib -luv -lkyotocabinet -lcurl
|
|
|
|
|
|
debug:
|
|
|
mkdir -p out
|
|
|
gcc -I/usr/local/include -I~/Downloads/libuv-0.10.12/include ./src/main.c -o ./out/fast-cache -L/usr/local/lib -luv -lkyotocabinet -lcurl -g
|
|
|
|
|
|
run:
|
|
|
./out/fast-cache
|
|
|
|
|
|
clean:
|
|
|
rm -rf out
|