1See below if building the proxy
2
3To build memcached in your machine from local repo you will have to install
4autotools, automake and libevent. In a debian based system that will look
5like this
6
7sudo apt-get install autotools-dev
8sudo apt-get install automake
9sudo apt-get install libevent-dev
10
11After that you can build memcached binary using automake
12
13cd memcached
14./autogen.sh
15./configure
16make
17make test
18
19It should create the binary in the same folder, which you can run
20
21./memcached
22
23You can telnet into that memcached to ensure it is up and running
24
25telnet 127.0.0.1 11211
26stats
27
28IF BUILDING PROXY, AN EXTRA STEP IS NECESSARY:
29
30cd memcached
31cd vendor
32./fetch.sh
33cd ..
34./autogen.sh
35./configure --enable-proxy
36make
37make test
38