Memcached -- you all use it. Get it here.
C Perl Shell
Clone or download
Pull request Compare This branch is 779 commits behind memcached:master.
carview.php?tsp= Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Failed to load latest commit information.
carview.php?tsp= devtools
carview.php?tsp= doc
carview.php?tsp= scripts
carview.php?tsp= t
carview.php?tsp= .gitignore
carview.php?tsp= .shipit
carview.php?tsp= AUTHORS
carview.php?tsp= BUILD
carview.php?tsp= COPYING
carview.php?tsp= ChangeLog
carview.php?tsp= Doxyfile
carview.php?tsp= HACKING
carview.php?tsp= LICENSE
carview.php?tsp= Makefile.am
carview.php?tsp= NEWS
carview.php?tsp= README
carview.php?tsp= TODO
carview.php?tsp= assoc.c
carview.php?tsp= assoc.h
carview.php?tsp= autogen.sh
carview.php?tsp= cache.c
carview.php?tsp= cache.h
carview.php?tsp= configure.ac
carview.php?tsp= daemon.c
carview.php?tsp= globals.c
carview.php?tsp= hash.c
carview.php?tsp= hash.h
carview.php?tsp= items.c
carview.php?tsp= items.h
carview.php?tsp= memcached.c
carview.php?tsp= memcached.h
carview.php?tsp= memcached.spec
carview.php?tsp= memcached_dtrace.d
carview.php?tsp= protocol_binary.h
carview.php?tsp= sizes.c
carview.php?tsp= slabs.c
carview.php?tsp= slabs.h
carview.php?tsp= solaris_priv.c
carview.php?tsp= stats.c
carview.php?tsp= stats.h
carview.php?tsp= testapp.c
carview.php?tsp= thread.c
carview.php?tsp= trace.h
carview.php?tsp= util.c
carview.php?tsp= util.h
carview.php?tsp= version.sh

README

Dependencies:
   -- libevent, https://www.monkey.org/~provos/libevent/ (libevent-dev)
If using Linux, you need a kernel with epoll.  Sure, libevent will
work with normal select, but it sucks.
epoll isn't in Linux 2.4 yet, but there's a backport at:
    https://www.xmailserver.org/linux-patches/nio-improve.html
     
You want the epoll-lt patch (level-triggered).
If you're using MacOS, you'll want libevent 1.1 or higher to deal with 
a kqueue bug.
Also, be warned that the -k (mlockall) option to memcached might be
dangerous when using a large cache.  Just make sure the memcached machines
don't swap.  memcached does non-blocking network I/O, but not disk.  (it
should never go to disk, or you've lost the whole point of it)
The memcached website is at:
    https://www.danga.com/memcached/