summaryrefslogtreecommitdiff
path: root/BUILD
blob: 8f843565c79de1c5045a1ab2211120ddfd88e1d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
To build memcached in your machine from local repo you will have to install
autotools, automake and libevent. In a debian based system that will look
like this

sudo apt-get install autotools-dev
sudo apt-get install automake
sudo apt-get install libevent-dev

After that you can build memcached binary using automake

cd memcached
./autogen.sh
./configure
make test
make

It should create the binary in the same folder, which you can run

./memcached

You can telnet into that memcached to ensure it is up and running

telnet 127.0.0.1 11211
stats