summaryrefslogtreecommitdiff
path: root/BUILD
diff options
context:
space:
mode:
authordormando <dormando@rydia.net>2020-06-10 22:56:07 -0700
committerdormando <dormando@rydia.net>2021-10-05 12:21:25 -0700
commitd22b66483bce8843110795609386edc6ebf65b69 (patch)
treeac2107f9450c857d9ed125a17aef79a4158da7f9 /BUILD
parent56dc81db316a0b957415e371d20c683fea9d7d2f (diff)
downloadmemcached-d22b66483bce8843110795609386edc6ebf65b69.tar.gz
proxy: initial commit.
See BUILD for compilation details. See t/startfile.lua for configuration examples. (see also https://github.com/memcached/memcached-proxylibs for extensions, config libraries, more examples) NOTE: io_uring mode is _not stable_, will crash. As of this commit it is not recommended to run the proxy in production. If you are interested please let us know, as we are actively stabilizing for production use.
Diffstat (limited to 'BUILD')
-rw-r--r--BUILD13
1 files changed, 13 insertions, 0 deletions
diff --git a/BUILD b/BUILD
index c29f8ed..5e3730a 100644
--- a/BUILD
+++ b/BUILD
@@ -1,3 +1,5 @@
+See below if building the proxy
+
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
@@ -22,3 +24,14 @@ You can telnet into that memcached to ensure it is up and running
telnet 127.0.0.1 11211
stats
+
+IF BUILDING PROXY, AN EXTRA STEP IS NECESSARY:
+
+cd memcached
+cd vendor
+./fetch.sh
+cd ..
+./autogen.sh
+./configure --enable-proxy
+make
+make test