├── .gitignore ├── .gitmodules ├── .shipit ├── AUTHORS ├── CMakeLists.txt ├── COPYING ├── ChangeLog ├── Doxyfile ├── HACKING ├── LICENSE ├── NEWS ├── README ├── TODO ├── TODO.moxi ├── conflate ├── adhoc_commands.c ├── conflate.c ├── conflate_internal.h ├── kvpair.c ├── logging.c ├── persist.c ├── rest.c ├── rest.h ├── util.c └── xmpp.c ├── debian ├── changelog.in ├── compat ├── control ├── copyright ├── dirs ├── docs ├── moxi.default ├── moxi.examples ├── moxi.init └── rules ├── devtools ├── bench_noreply.pl ├── clean-whitespace.pl └── svn-tarballs.pl ├── doc ├── CONTRIBUTORS ├── Doxyfile ├── Makefile.am ├── building-moxi-packages.txt ├── memory_management.txt ├── moxi.1 ├── moxi │ └── configuration.org ├── protocol.txt ├── readme.txt ├── threads.txt └── xml2rfc │ ├── reference.RFC.0768.xml │ ├── rfc2629-noinc.xsl │ ├── rfc2629-other.ent │ ├── rfc2629-refchk.xsl │ ├── rfc2629-xhtml.ent │ └── rfc2629.dtd ├── include ├── libconflate │ └── conflate.h └── libvbucket │ ├── vbucket.h │ └── visibility.h ├── libmemcached ├── .gitignore ├── AUTHORS ├── CMakeLists.txt ├── COPYING ├── ChangeLog ├── NEWS ├── README ├── README.FIRST ├── README.win32 ├── THANKS ├── TODO ├── libhashkit │ ├── algorithm.c │ ├── algorithm.h │ ├── behavior.c │ ├── behavior.h │ ├── common.h │ ├── configure.h │ ├── configure.h.in │ ├── crc32.c │ ├── digest.c │ ├── digest.h │ ├── fnv.c │ ├── function.c │ ├── function.h │ ├── hashkit.c │ ├── hashkit.h │ ├── jenkins.c │ ├── ketama.c │ ├── md5.c │ ├── one_at_a_time.c │ ├── strerror.c │ ├── strerror.h │ ├── types.h │ └── visibility.h ├── libmemcached │ ├── allocators.c │ ├── allocators.h │ ├── analyze.c │ ├── analyze.h │ ├── auto.c │ ├── auto.h │ ├── behavior.c │ ├── behavior.h │ ├── byteorder.c │ ├── byteorder.h │ ├── callback.c │ ├── callback.h │ ├── common.h │ ├── configure.h │ ├── configure.h.in │ ├── connect.c │ ├── constants.h │ ├── delete.c │ ├── delete.h │ ├── do.c │ ├── do.h │ ├── dump.c │ ├── dump.h │ ├── exception.hpp │ ├── fetch.c │ ├── fetch.h │ ├── flush.c │ ├── flush.h │ ├── flush_buffers.c │ ├── flush_buffers.h │ ├── get.c │ ├── get.h │ ├── hash.c │ ├── hash.h │ ├── hosts.c │ ├── internal.h │ ├── io.c │ ├── io.h │ ├── key.c │ ├── libmemcached_probes.d │ ├── libmemcached_probes.h │ ├── memcached.c │ ├── memcached.h │ ├── memcached.hpp │ ├── memcached │ │ ├── README.txt │ │ └── protocol_binary.h │ ├── memcached_util.h │ ├── parse.c │ ├── parse.h │ ├── platform.h │ ├── protocol_handler.h │ ├── purge.c │ ├── quit.c │ ├── quit.h │ ├── response.c │ ├── response.h │ ├── result.c │ ├── result.h │ ├── sasl.h │ ├── server.c │ ├── server.h │ ├── server_list.c │ ├── server_list.h │ ├── stats.c │ ├── stats.h │ ├── storage.c │ ├── storage.h │ ├── strerror.c │ ├── strerror.h │ ├── string.c │ ├── string.h │ ├── types.h │ ├── util.h │ ├── verbosity.c │ ├── verbosity.h │ ├── version.c │ ├── version.h │ ├── visibility.h │ ├── watchpoint.h │ └── win32.c ├── libmemcached_config.h.in ├── poll │ ├── poll.c │ └── poll.h └── win32 │ ├── inttypes.h │ ├── stdbool.h │ ├── stdint.h │ ├── strings.h │ ├── sys │ └── time.h │ ├── unistd.h │ └── wrappers.h ├── memcached.spec.in ├── scripts ├── dtrace-profile.d ├── dtrace-syscalls.d ├── examples │ ├── moxi.conf.direct │ └── moxi.conf.service ├── memcached-init ├── memcached-tool ├── memcached.sysv ├── moxi-init.rhat.in ├── rpm │ ├── build-fc-rpm │ └── moxi.spec.in └── start-memcached ├── src ├── agent.h ├── agent_config.c ├── agent_ping.c ├── agent_stats.c ├── assoc.c ├── assoc.h ├── cache.c ├── cache.h ├── check_moxi.c ├── check_moxi_agent.c ├── check_util.c ├── check_work.c ├── config.cmake.h ├── cproxy.c ├── cproxy.h ├── cproxy_config.c ├── cproxy_front.c ├── cproxy_multiget.c ├── cproxy_protocol_a.c ├── cproxy_protocol_a2a.c ├── cproxy_protocol_a2b.c ├── cproxy_protocol_b.c ├── cproxy_protocol_b2b.c ├── cproxy_stats.c ├── daemon.c ├── genhash.c ├── genhash.h ├── genhash_int.h ├── globals.c ├── hash.c ├── hash.h ├── htgram.c ├── htgram.h ├── items.c ├── items.h ├── log.c ├── log.h ├── matcher.c ├── matcher.h ├── mcs.c ├── mcs.h ├── memcached.c ├── memcached.h ├── murmur_hash.c ├── protocol_binary.h ├── redirects.c ├── redirects.h ├── slabs.c ├── slabs.h ├── solaris_priv.c ├── stats.c ├── stats.h ├── stdin_check.c ├── stdin_check.h ├── strsep.c ├── testapp.c ├── thread.c ├── timedrun.c ├── trace.h ├── util.c ├── util.h ├── work.c └── work.h ├── t ├── 00-startup.t ├── 64bit.t ├── binary-get.t ├── binary.t ├── bogus-commands.t ├── cas.t ├── daemonize.t ├── dash-M.t ├── expirations.t ├── flags.t ├── flush-all.t ├── getset.t ├── incrdecr.t ├── issue-MB-2649.sh ├── issue-MB-2660.sh ├── issue-MB-2689.sh ├── issue-MB-2811.sh ├── issue-MB-2825.sh ├── issue-MB-2972.sh ├── issue-MB-2980.sh ├── issue-MB-3076.sh ├── issue-MB-3113.sh ├── issue-MB-3575.sh ├── issue-conn-close.sh ├── issue_14.t ├── issue_22.t ├── issue_29.t ├── issue_41.t ├── issue_42.t ├── issue_50.t ├── issue_61.t ├── issue_70.t ├── ketama_rest_mixed.cfg ├── ketama_rest_one.cfg ├── lib │ └── MemcachedTest.pm ├── line-lengths.t ├── lru.t ├── maxconns.t ├── mc_bin_client.py ├── memcacheConstants.py ├── moxi.pl ├── moxi_all.pl ├── moxi_mock.cfg ├── moxi_mock.pl ├── moxi_mock_a2a.py ├── moxi_mock_a2b.py ├── moxi_mock_auth.py ├── moxi_mock_b2b.py ├── moxi_mock_server.py ├── moxi_multitenancy.py ├── moxi_multitenancy_default.py ├── moxi_multitenancy_rest.cfg ├── moxi_multitenancy_rest_default.cfg ├── moxi_one.pl ├── multiversioning.t ├── noreply.t ├── rest_mock.rb ├── slab-reassign.t ├── stats-detail.t ├── stats.t ├── stress-memcached.pl ├── udp.t ├── unixsocket.t ├── vbucket1.cfg ├── vbucket2.cfg ├── vbucket_rest1.cfg ├── vbucket_rest2.cfg └── whitespace.t ├── tests ├── conflate │ ├── check_alarm.c │ ├── check_kvpair.c │ ├── test_common.c │ └── test_common.h ├── moxi │ ├── htgram_test.c │ └── sizes.c └── vbucket │ ├── config │ ├── ketama-eight-nodes │ ├── ketama-eight-nodes.md5sum │ ├── ketama-ordered-eight-nodes │ ├── ketama-ordered-eight-nodes.md5sum │ ├── regression-bug2112 │ ├── testapp-config │ ├── testapp-config-couch-api-base │ ├── testapp-config-diff1 │ ├── testapp-config-diff2 │ ├── testapp-config-diff3 │ ├── testapp-config-flat │ ├── testapp-config-in-envelope │ ├── testapp-config-in-envelope-fft │ ├── testapp-config-in-envelope2 │ ├── testapp-config-user-password1 │ ├── testapp-config-user-password2 │ ├── testapp-config-wrong-num-vbuckets │ ├── testapp-config-zero-num-vbuckets │ └── vbucket-eight-nodes │ ├── macros.h │ ├── regression.c │ ├── testapp.c │ └── testketama.c └── vbucket ├── crc32.c ├── hash.h ├── ketama.c ├── rfc1321 ├── global.h ├── md5.h └── md5c.c ├── vbucket.c ├── vbucketkeygen.c └── vbuckettool.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/.gitmodules -------------------------------------------------------------------------------- /.shipit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/.shipit -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/AUTHORS -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/ChangeLog -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/Doxyfile -------------------------------------------------------------------------------- /HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/HACKING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/LICENSE -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | http://www.danga.com/memcached/news.bml 2 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/TODO -------------------------------------------------------------------------------- /TODO.moxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/TODO.moxi -------------------------------------------------------------------------------- /conflate/adhoc_commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/conflate/adhoc_commands.c -------------------------------------------------------------------------------- /conflate/conflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/conflate/conflate.c -------------------------------------------------------------------------------- /conflate/conflate_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/conflate/conflate_internal.h -------------------------------------------------------------------------------- /conflate/kvpair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/conflate/kvpair.c -------------------------------------------------------------------------------- /conflate/logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/conflate/logging.c -------------------------------------------------------------------------------- /conflate/persist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/conflate/persist.c -------------------------------------------------------------------------------- /conflate/rest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/conflate/rest.c -------------------------------------------------------------------------------- /conflate/rest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/conflate/rest.h -------------------------------------------------------------------------------- /conflate/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/conflate/util.c -------------------------------------------------------------------------------- /conflate/xmpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/conflate/xmpp.c -------------------------------------------------------------------------------- /debian/changelog.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/debian/changelog.in -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/dirs: -------------------------------------------------------------------------------- 1 | usr/bin 2 | -------------------------------------------------------------------------------- /debian/docs: -------------------------------------------------------------------------------- 1 | README 2 | AUTHORS 3 | COPYING 4 | doc/CONTRIBUTORS 5 | scripts/examples/ 6 | -------------------------------------------------------------------------------- /debian/moxi.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/debian/moxi.default -------------------------------------------------------------------------------- /debian/moxi.examples: -------------------------------------------------------------------------------- 1 | scripts/examples/* 2 | -------------------------------------------------------------------------------- /debian/moxi.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/debian/moxi.init -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/debian/rules -------------------------------------------------------------------------------- /devtools/bench_noreply.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/devtools/bench_noreply.pl -------------------------------------------------------------------------------- /devtools/clean-whitespace.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/devtools/clean-whitespace.pl -------------------------------------------------------------------------------- /devtools/svn-tarballs.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/devtools/svn-tarballs.pl -------------------------------------------------------------------------------- /doc/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/doc/CONTRIBUTORS -------------------------------------------------------------------------------- /doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/doc/Doxyfile -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- 1 | man_MANS = moxi.1 2 | 3 | EXTRA_DIST = *.txt 4 | 5 | BUILT_SOURCES= 6 | -------------------------------------------------------------------------------- /doc/building-moxi-packages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/doc/building-moxi-packages.txt -------------------------------------------------------------------------------- /doc/memory_management.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/doc/memory_management.txt -------------------------------------------------------------------------------- /doc/moxi.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/doc/moxi.1 -------------------------------------------------------------------------------- /doc/moxi/configuration.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/doc/moxi/configuration.org -------------------------------------------------------------------------------- /doc/protocol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/doc/protocol.txt -------------------------------------------------------------------------------- /doc/readme.txt: -------------------------------------------------------------------------------- 1 | To build the documentation you need xml2rfc ( http://xml.resource.org/ ). 2 | -------------------------------------------------------------------------------- /doc/threads.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/doc/threads.txt -------------------------------------------------------------------------------- /doc/xml2rfc/reference.RFC.0768.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/doc/xml2rfc/reference.RFC.0768.xml -------------------------------------------------------------------------------- /doc/xml2rfc/rfc2629-noinc.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/doc/xml2rfc/rfc2629-noinc.xsl -------------------------------------------------------------------------------- /doc/xml2rfc/rfc2629-other.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/doc/xml2rfc/rfc2629-other.ent -------------------------------------------------------------------------------- /doc/xml2rfc/rfc2629-refchk.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/doc/xml2rfc/rfc2629-refchk.xsl -------------------------------------------------------------------------------- /doc/xml2rfc/rfc2629-xhtml.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/doc/xml2rfc/rfc2629-xhtml.ent -------------------------------------------------------------------------------- /doc/xml2rfc/rfc2629.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/doc/xml2rfc/rfc2629.dtd -------------------------------------------------------------------------------- /include/libconflate/conflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/include/libconflate/conflate.h -------------------------------------------------------------------------------- /include/libvbucket/vbucket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/include/libvbucket/vbucket.h -------------------------------------------------------------------------------- /include/libvbucket/visibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/include/libvbucket/visibility.h -------------------------------------------------------------------------------- /libmemcached/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/.gitignore -------------------------------------------------------------------------------- /libmemcached/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/AUTHORS -------------------------------------------------------------------------------- /libmemcached/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/CMakeLists.txt -------------------------------------------------------------------------------- /libmemcached/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/COPYING -------------------------------------------------------------------------------- /libmemcached/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/ChangeLog -------------------------------------------------------------------------------- /libmemcached/NEWS: -------------------------------------------------------------------------------- 1 | See Changelog 2 | -------------------------------------------------------------------------------- /libmemcached/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/README -------------------------------------------------------------------------------- /libmemcached/README.FIRST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/README.FIRST -------------------------------------------------------------------------------- /libmemcached/README.win32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/README.win32 -------------------------------------------------------------------------------- /libmemcached/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/THANKS -------------------------------------------------------------------------------- /libmemcached/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/TODO -------------------------------------------------------------------------------- /libmemcached/libhashkit/algorithm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libhashkit/algorithm.c -------------------------------------------------------------------------------- /libmemcached/libhashkit/algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libhashkit/algorithm.h -------------------------------------------------------------------------------- /libmemcached/libhashkit/behavior.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libhashkit/behavior.c -------------------------------------------------------------------------------- /libmemcached/libhashkit/behavior.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libhashkit/behavior.h -------------------------------------------------------------------------------- /libmemcached/libhashkit/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libhashkit/common.h -------------------------------------------------------------------------------- /libmemcached/libhashkit/configure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libhashkit/configure.h -------------------------------------------------------------------------------- /libmemcached/libhashkit/configure.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libhashkit/configure.h.in -------------------------------------------------------------------------------- /libmemcached/libhashkit/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libhashkit/crc32.c -------------------------------------------------------------------------------- /libmemcached/libhashkit/digest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libhashkit/digest.c -------------------------------------------------------------------------------- /libmemcached/libhashkit/digest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libhashkit/digest.h -------------------------------------------------------------------------------- /libmemcached/libhashkit/fnv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libhashkit/fnv.c -------------------------------------------------------------------------------- /libmemcached/libhashkit/function.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libhashkit/function.c -------------------------------------------------------------------------------- /libmemcached/libhashkit/function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libhashkit/function.h -------------------------------------------------------------------------------- /libmemcached/libhashkit/hashkit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libhashkit/hashkit.c -------------------------------------------------------------------------------- /libmemcached/libhashkit/hashkit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libhashkit/hashkit.h -------------------------------------------------------------------------------- /libmemcached/libhashkit/jenkins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libhashkit/jenkins.c -------------------------------------------------------------------------------- /libmemcached/libhashkit/ketama.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libhashkit/ketama.c -------------------------------------------------------------------------------- /libmemcached/libhashkit/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libhashkit/md5.c -------------------------------------------------------------------------------- /libmemcached/libhashkit/one_at_a_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libhashkit/one_at_a_time.c -------------------------------------------------------------------------------- /libmemcached/libhashkit/strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libhashkit/strerror.c -------------------------------------------------------------------------------- /libmemcached/libhashkit/strerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libhashkit/strerror.h -------------------------------------------------------------------------------- /libmemcached/libhashkit/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libhashkit/types.h -------------------------------------------------------------------------------- /libmemcached/libhashkit/visibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libhashkit/visibility.h -------------------------------------------------------------------------------- /libmemcached/libmemcached/allocators.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/allocators.c -------------------------------------------------------------------------------- /libmemcached/libmemcached/allocators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/allocators.h -------------------------------------------------------------------------------- /libmemcached/libmemcached/analyze.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/analyze.c -------------------------------------------------------------------------------- /libmemcached/libmemcached/analyze.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/analyze.h -------------------------------------------------------------------------------- /libmemcached/libmemcached/auto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/auto.c -------------------------------------------------------------------------------- /libmemcached/libmemcached/auto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/auto.h -------------------------------------------------------------------------------- /libmemcached/libmemcached/behavior.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/behavior.c -------------------------------------------------------------------------------- /libmemcached/libmemcached/behavior.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/behavior.h -------------------------------------------------------------------------------- /libmemcached/libmemcached/byteorder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/byteorder.c -------------------------------------------------------------------------------- /libmemcached/libmemcached/byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/byteorder.h -------------------------------------------------------------------------------- /libmemcached/libmemcached/callback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/callback.c -------------------------------------------------------------------------------- /libmemcached/libmemcached/callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/callback.h -------------------------------------------------------------------------------- /libmemcached/libmemcached/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/common.h -------------------------------------------------------------------------------- /libmemcached/libmemcached/configure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/configure.h -------------------------------------------------------------------------------- /libmemcached/libmemcached/configure.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/configure.h.in -------------------------------------------------------------------------------- /libmemcached/libmemcached/connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/connect.c -------------------------------------------------------------------------------- /libmemcached/libmemcached/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/constants.h -------------------------------------------------------------------------------- /libmemcached/libmemcached/delete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/delete.c -------------------------------------------------------------------------------- /libmemcached/libmemcached/delete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/delete.h -------------------------------------------------------------------------------- /libmemcached/libmemcached/do.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/do.c -------------------------------------------------------------------------------- /libmemcached/libmemcached/do.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/do.h -------------------------------------------------------------------------------- /libmemcached/libmemcached/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/dump.c -------------------------------------------------------------------------------- /libmemcached/libmemcached/dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/dump.h -------------------------------------------------------------------------------- /libmemcached/libmemcached/exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/exception.hpp -------------------------------------------------------------------------------- /libmemcached/libmemcached/fetch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/fetch.c -------------------------------------------------------------------------------- /libmemcached/libmemcached/fetch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/fetch.h -------------------------------------------------------------------------------- /libmemcached/libmemcached/flush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/flush.c -------------------------------------------------------------------------------- /libmemcached/libmemcached/flush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/flush.h -------------------------------------------------------------------------------- /libmemcached/libmemcached/flush_buffers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/flush_buffers.c -------------------------------------------------------------------------------- /libmemcached/libmemcached/flush_buffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/flush_buffers.h -------------------------------------------------------------------------------- /libmemcached/libmemcached/get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/get.c -------------------------------------------------------------------------------- /libmemcached/libmemcached/get.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/get.h -------------------------------------------------------------------------------- /libmemcached/libmemcached/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/hash.c -------------------------------------------------------------------------------- /libmemcached/libmemcached/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/hash.h -------------------------------------------------------------------------------- /libmemcached/libmemcached/hosts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/hosts.c -------------------------------------------------------------------------------- /libmemcached/libmemcached/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/internal.h -------------------------------------------------------------------------------- /libmemcached/libmemcached/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/io.c -------------------------------------------------------------------------------- /libmemcached/libmemcached/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/io.h -------------------------------------------------------------------------------- /libmemcached/libmemcached/key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/key.c -------------------------------------------------------------------------------- /libmemcached/libmemcached/libmemcached_probes.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/libmemcached_probes.d -------------------------------------------------------------------------------- /libmemcached/libmemcached/libmemcached_probes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/libmemcached_probes.h -------------------------------------------------------------------------------- /libmemcached/libmemcached/memcached.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/memcached.c -------------------------------------------------------------------------------- /libmemcached/libmemcached/memcached.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/memcached.h -------------------------------------------------------------------------------- /libmemcached/libmemcached/memcached.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/memcached.hpp -------------------------------------------------------------------------------- /libmemcached/libmemcached/memcached/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/memcached/README.txt -------------------------------------------------------------------------------- /libmemcached/libmemcached/memcached/protocol_binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/memcached/protocol_binary.h -------------------------------------------------------------------------------- /libmemcached/libmemcached/memcached_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/memcached_util.h -------------------------------------------------------------------------------- /libmemcached/libmemcached/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/parse.c -------------------------------------------------------------------------------- /libmemcached/libmemcached/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/parse.h -------------------------------------------------------------------------------- /libmemcached/libmemcached/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/platform.h -------------------------------------------------------------------------------- /libmemcached/libmemcached/protocol_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/protocol_handler.h -------------------------------------------------------------------------------- /libmemcached/libmemcached/purge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/purge.c -------------------------------------------------------------------------------- /libmemcached/libmemcached/quit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/quit.c -------------------------------------------------------------------------------- /libmemcached/libmemcached/quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/quit.h -------------------------------------------------------------------------------- /libmemcached/libmemcached/response.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/response.c -------------------------------------------------------------------------------- /libmemcached/libmemcached/response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/response.h -------------------------------------------------------------------------------- /libmemcached/libmemcached/result.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/result.c -------------------------------------------------------------------------------- /libmemcached/libmemcached/result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/result.h -------------------------------------------------------------------------------- /libmemcached/libmemcached/sasl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/sasl.h -------------------------------------------------------------------------------- /libmemcached/libmemcached/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/server.c -------------------------------------------------------------------------------- /libmemcached/libmemcached/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/server.h -------------------------------------------------------------------------------- /libmemcached/libmemcached/server_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/server_list.c -------------------------------------------------------------------------------- /libmemcached/libmemcached/server_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/server_list.h -------------------------------------------------------------------------------- /libmemcached/libmemcached/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/stats.c -------------------------------------------------------------------------------- /libmemcached/libmemcached/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/stats.h -------------------------------------------------------------------------------- /libmemcached/libmemcached/storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/storage.c -------------------------------------------------------------------------------- /libmemcached/libmemcached/storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/storage.h -------------------------------------------------------------------------------- /libmemcached/libmemcached/strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/strerror.c -------------------------------------------------------------------------------- /libmemcached/libmemcached/strerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/strerror.h -------------------------------------------------------------------------------- /libmemcached/libmemcached/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/string.c -------------------------------------------------------------------------------- /libmemcached/libmemcached/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/string.h -------------------------------------------------------------------------------- /libmemcached/libmemcached/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/types.h -------------------------------------------------------------------------------- /libmemcached/libmemcached/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/util.h -------------------------------------------------------------------------------- /libmemcached/libmemcached/verbosity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/verbosity.c -------------------------------------------------------------------------------- /libmemcached/libmemcached/verbosity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/verbosity.h -------------------------------------------------------------------------------- /libmemcached/libmemcached/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/version.c -------------------------------------------------------------------------------- /libmemcached/libmemcached/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/version.h -------------------------------------------------------------------------------- /libmemcached/libmemcached/visibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/visibility.h -------------------------------------------------------------------------------- /libmemcached/libmemcached/watchpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/watchpoint.h -------------------------------------------------------------------------------- /libmemcached/libmemcached/win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached/win32.c -------------------------------------------------------------------------------- /libmemcached/libmemcached_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/libmemcached_config.h.in -------------------------------------------------------------------------------- /libmemcached/poll/poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/poll/poll.c -------------------------------------------------------------------------------- /libmemcached/poll/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/poll/poll.h -------------------------------------------------------------------------------- /libmemcached/win32/inttypes.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | -------------------------------------------------------------------------------- /libmemcached/win32/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/win32/stdbool.h -------------------------------------------------------------------------------- /libmemcached/win32/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/win32/stdint.h -------------------------------------------------------------------------------- /libmemcached/win32/strings.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /libmemcached/win32/sys/time.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /libmemcached/win32/unistd.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /libmemcached/win32/wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/libmemcached/win32/wrappers.h -------------------------------------------------------------------------------- /memcached.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/memcached.spec.in -------------------------------------------------------------------------------- /scripts/dtrace-profile.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/scripts/dtrace-profile.d -------------------------------------------------------------------------------- /scripts/dtrace-syscalls.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/scripts/dtrace-syscalls.d -------------------------------------------------------------------------------- /scripts/examples/moxi.conf.direct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/scripts/examples/moxi.conf.direct -------------------------------------------------------------------------------- /scripts/examples/moxi.conf.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/scripts/examples/moxi.conf.service -------------------------------------------------------------------------------- /scripts/memcached-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/scripts/memcached-init -------------------------------------------------------------------------------- /scripts/memcached-tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/scripts/memcached-tool -------------------------------------------------------------------------------- /scripts/memcached.sysv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/scripts/memcached.sysv -------------------------------------------------------------------------------- /scripts/moxi-init.rhat.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/scripts/moxi-init.rhat.in -------------------------------------------------------------------------------- /scripts/rpm/build-fc-rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/scripts/rpm/build-fc-rpm -------------------------------------------------------------------------------- /scripts/rpm/moxi.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/scripts/rpm/moxi.spec.in -------------------------------------------------------------------------------- /scripts/start-memcached: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/scripts/start-memcached -------------------------------------------------------------------------------- /src/agent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/agent.h -------------------------------------------------------------------------------- /src/agent_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/agent_config.c -------------------------------------------------------------------------------- /src/agent_ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/agent_ping.c -------------------------------------------------------------------------------- /src/agent_stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/agent_stats.c -------------------------------------------------------------------------------- /src/assoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/assoc.c -------------------------------------------------------------------------------- /src/assoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/assoc.h -------------------------------------------------------------------------------- /src/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/cache.c -------------------------------------------------------------------------------- /src/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/cache.h -------------------------------------------------------------------------------- /src/check_moxi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/check_moxi.c -------------------------------------------------------------------------------- /src/check_moxi_agent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/check_moxi_agent.c -------------------------------------------------------------------------------- /src/check_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/check_util.c -------------------------------------------------------------------------------- /src/check_work.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/check_work.c -------------------------------------------------------------------------------- /src/config.cmake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/config.cmake.h -------------------------------------------------------------------------------- /src/cproxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/cproxy.c -------------------------------------------------------------------------------- /src/cproxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/cproxy.h -------------------------------------------------------------------------------- /src/cproxy_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/cproxy_config.c -------------------------------------------------------------------------------- /src/cproxy_front.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/cproxy_front.c -------------------------------------------------------------------------------- /src/cproxy_multiget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/cproxy_multiget.c -------------------------------------------------------------------------------- /src/cproxy_protocol_a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/cproxy_protocol_a.c -------------------------------------------------------------------------------- /src/cproxy_protocol_a2a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/cproxy_protocol_a2a.c -------------------------------------------------------------------------------- /src/cproxy_protocol_a2b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/cproxy_protocol_a2b.c -------------------------------------------------------------------------------- /src/cproxy_protocol_b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/cproxy_protocol_b.c -------------------------------------------------------------------------------- /src/cproxy_protocol_b2b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/cproxy_protocol_b2b.c -------------------------------------------------------------------------------- /src/cproxy_stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/cproxy_stats.c -------------------------------------------------------------------------------- /src/daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/daemon.c -------------------------------------------------------------------------------- /src/genhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/genhash.c -------------------------------------------------------------------------------- /src/genhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/genhash.h -------------------------------------------------------------------------------- /src/genhash_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/genhash_int.h -------------------------------------------------------------------------------- /src/globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/globals.c -------------------------------------------------------------------------------- /src/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/hash.c -------------------------------------------------------------------------------- /src/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/hash.h -------------------------------------------------------------------------------- /src/htgram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/htgram.c -------------------------------------------------------------------------------- /src/htgram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/htgram.h -------------------------------------------------------------------------------- /src/items.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/items.c -------------------------------------------------------------------------------- /src/items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/items.h -------------------------------------------------------------------------------- /src/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/log.c -------------------------------------------------------------------------------- /src/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/log.h -------------------------------------------------------------------------------- /src/matcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/matcher.c -------------------------------------------------------------------------------- /src/matcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/matcher.h -------------------------------------------------------------------------------- /src/mcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/mcs.c -------------------------------------------------------------------------------- /src/mcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/mcs.h -------------------------------------------------------------------------------- /src/memcached.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/memcached.c -------------------------------------------------------------------------------- /src/memcached.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/memcached.h -------------------------------------------------------------------------------- /src/murmur_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/murmur_hash.c -------------------------------------------------------------------------------- /src/protocol_binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/protocol_binary.h -------------------------------------------------------------------------------- /src/redirects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/redirects.c -------------------------------------------------------------------------------- /src/redirects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/redirects.h -------------------------------------------------------------------------------- /src/slabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/slabs.c -------------------------------------------------------------------------------- /src/slabs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/slabs.h -------------------------------------------------------------------------------- /src/solaris_priv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/solaris_priv.c -------------------------------------------------------------------------------- /src/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/stats.c -------------------------------------------------------------------------------- /src/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/stats.h -------------------------------------------------------------------------------- /src/stdin_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/stdin_check.c -------------------------------------------------------------------------------- /src/stdin_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/stdin_check.h -------------------------------------------------------------------------------- /src/strsep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/strsep.c -------------------------------------------------------------------------------- /src/testapp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/testapp.c -------------------------------------------------------------------------------- /src/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/thread.c -------------------------------------------------------------------------------- /src/timedrun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/timedrun.c -------------------------------------------------------------------------------- /src/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/trace.h -------------------------------------------------------------------------------- /src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/util.c -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/util.h -------------------------------------------------------------------------------- /src/work.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/work.c -------------------------------------------------------------------------------- /src/work.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/src/work.h -------------------------------------------------------------------------------- /t/00-startup.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/00-startup.t -------------------------------------------------------------------------------- /t/64bit.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/64bit.t -------------------------------------------------------------------------------- /t/binary-get.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/binary-get.t -------------------------------------------------------------------------------- /t/binary.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/binary.t -------------------------------------------------------------------------------- /t/bogus-commands.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/bogus-commands.t -------------------------------------------------------------------------------- /t/cas.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/cas.t -------------------------------------------------------------------------------- /t/daemonize.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/daemonize.t -------------------------------------------------------------------------------- /t/dash-M.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/dash-M.t -------------------------------------------------------------------------------- /t/expirations.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/expirations.t -------------------------------------------------------------------------------- /t/flags.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/flags.t -------------------------------------------------------------------------------- /t/flush-all.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/flush-all.t -------------------------------------------------------------------------------- /t/getset.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/getset.t -------------------------------------------------------------------------------- /t/incrdecr.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/incrdecr.t -------------------------------------------------------------------------------- /t/issue-MB-2649.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/issue-MB-2649.sh -------------------------------------------------------------------------------- /t/issue-MB-2660.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/issue-MB-2660.sh -------------------------------------------------------------------------------- /t/issue-MB-2689.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/issue-MB-2689.sh -------------------------------------------------------------------------------- /t/issue-MB-2811.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/issue-MB-2811.sh -------------------------------------------------------------------------------- /t/issue-MB-2825.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/issue-MB-2825.sh -------------------------------------------------------------------------------- /t/issue-MB-2972.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/issue-MB-2972.sh -------------------------------------------------------------------------------- /t/issue-MB-2980.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/issue-MB-2980.sh -------------------------------------------------------------------------------- /t/issue-MB-3076.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/issue-MB-3076.sh -------------------------------------------------------------------------------- /t/issue-MB-3113.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/issue-MB-3113.sh -------------------------------------------------------------------------------- /t/issue-MB-3575.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/issue-MB-3575.sh -------------------------------------------------------------------------------- /t/issue-conn-close.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/issue-conn-close.sh -------------------------------------------------------------------------------- /t/issue_14.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/issue_14.t -------------------------------------------------------------------------------- /t/issue_22.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/issue_22.t -------------------------------------------------------------------------------- /t/issue_29.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/issue_29.t -------------------------------------------------------------------------------- /t/issue_41.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/issue_41.t -------------------------------------------------------------------------------- /t/issue_42.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/issue_42.t -------------------------------------------------------------------------------- /t/issue_50.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/issue_50.t -------------------------------------------------------------------------------- /t/issue_61.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/issue_61.t -------------------------------------------------------------------------------- /t/issue_70.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/issue_70.t -------------------------------------------------------------------------------- /t/ketama_rest_mixed.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/ketama_rest_mixed.cfg -------------------------------------------------------------------------------- /t/ketama_rest_one.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/ketama_rest_one.cfg -------------------------------------------------------------------------------- /t/lib/MemcachedTest.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/lib/MemcachedTest.pm -------------------------------------------------------------------------------- /t/line-lengths.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/line-lengths.t -------------------------------------------------------------------------------- /t/lru.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/lru.t -------------------------------------------------------------------------------- /t/maxconns.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/maxconns.t -------------------------------------------------------------------------------- /t/mc_bin_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/mc_bin_client.py -------------------------------------------------------------------------------- /t/memcacheConstants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/memcacheConstants.py -------------------------------------------------------------------------------- /t/moxi.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/moxi.pl -------------------------------------------------------------------------------- /t/moxi_all.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/moxi_all.pl -------------------------------------------------------------------------------- /t/moxi_mock.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/moxi_mock.cfg -------------------------------------------------------------------------------- /t/moxi_mock.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/moxi_mock.pl -------------------------------------------------------------------------------- /t/moxi_mock_a2a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/moxi_mock_a2a.py -------------------------------------------------------------------------------- /t/moxi_mock_a2b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/moxi_mock_a2b.py -------------------------------------------------------------------------------- /t/moxi_mock_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/moxi_mock_auth.py -------------------------------------------------------------------------------- /t/moxi_mock_b2b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/moxi_mock_b2b.py -------------------------------------------------------------------------------- /t/moxi_mock_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/moxi_mock_server.py -------------------------------------------------------------------------------- /t/moxi_multitenancy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/moxi_multitenancy.py -------------------------------------------------------------------------------- /t/moxi_multitenancy_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/moxi_multitenancy_default.py -------------------------------------------------------------------------------- /t/moxi_multitenancy_rest.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/moxi_multitenancy_rest.cfg -------------------------------------------------------------------------------- /t/moxi_multitenancy_rest_default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/moxi_multitenancy_rest_default.cfg -------------------------------------------------------------------------------- /t/moxi_one.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/moxi_one.pl -------------------------------------------------------------------------------- /t/multiversioning.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/multiversioning.t -------------------------------------------------------------------------------- /t/noreply.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/noreply.t -------------------------------------------------------------------------------- /t/rest_mock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/rest_mock.rb -------------------------------------------------------------------------------- /t/slab-reassign.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/slab-reassign.t -------------------------------------------------------------------------------- /t/stats-detail.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/stats-detail.t -------------------------------------------------------------------------------- /t/stats.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/stats.t -------------------------------------------------------------------------------- /t/stress-memcached.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/stress-memcached.pl -------------------------------------------------------------------------------- /t/udp.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/udp.t -------------------------------------------------------------------------------- /t/unixsocket.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/unixsocket.t -------------------------------------------------------------------------------- /t/vbucket1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/vbucket1.cfg -------------------------------------------------------------------------------- /t/vbucket2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/vbucket2.cfg -------------------------------------------------------------------------------- /t/vbucket_rest1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/vbucket_rest1.cfg -------------------------------------------------------------------------------- /t/vbucket_rest2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/vbucket_rest2.cfg -------------------------------------------------------------------------------- /t/whitespace.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/t/whitespace.t -------------------------------------------------------------------------------- /tests/conflate/check_alarm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/tests/conflate/check_alarm.c -------------------------------------------------------------------------------- /tests/conflate/check_kvpair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/tests/conflate/check_kvpair.c -------------------------------------------------------------------------------- /tests/conflate/test_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/tests/conflate/test_common.c -------------------------------------------------------------------------------- /tests/conflate/test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/tests/conflate/test_common.h -------------------------------------------------------------------------------- /tests/moxi/htgram_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/tests/moxi/htgram_test.c -------------------------------------------------------------------------------- /tests/moxi/sizes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/tests/moxi/sizes.c -------------------------------------------------------------------------------- /tests/vbucket/config/ketama-eight-nodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/tests/vbucket/config/ketama-eight-nodes -------------------------------------------------------------------------------- /tests/vbucket/config/ketama-eight-nodes.md5sum: -------------------------------------------------------------------------------- 1 | 7f4da8f120e89d695094f45a74346dbe 2 | -------------------------------------------------------------------------------- /tests/vbucket/config/ketama-ordered-eight-nodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/tests/vbucket/config/ketama-ordered-eight-nodes -------------------------------------------------------------------------------- /tests/vbucket/config/ketama-ordered-eight-nodes.md5sum: -------------------------------------------------------------------------------- 1 | 7f4da8f120e89d695094f45a74346dbe 2 | -------------------------------------------------------------------------------- /tests/vbucket/config/regression-bug2112: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/tests/vbucket/config/regression-bug2112 -------------------------------------------------------------------------------- /tests/vbucket/config/testapp-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/tests/vbucket/config/testapp-config -------------------------------------------------------------------------------- /tests/vbucket/config/testapp-config-couch-api-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/tests/vbucket/config/testapp-config-couch-api-base -------------------------------------------------------------------------------- /tests/vbucket/config/testapp-config-diff1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/tests/vbucket/config/testapp-config-diff1 -------------------------------------------------------------------------------- /tests/vbucket/config/testapp-config-diff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/tests/vbucket/config/testapp-config-diff2 -------------------------------------------------------------------------------- /tests/vbucket/config/testapp-config-diff3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/tests/vbucket/config/testapp-config-diff3 -------------------------------------------------------------------------------- /tests/vbucket/config/testapp-config-flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/tests/vbucket/config/testapp-config-flat -------------------------------------------------------------------------------- /tests/vbucket/config/testapp-config-in-envelope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/tests/vbucket/config/testapp-config-in-envelope -------------------------------------------------------------------------------- /tests/vbucket/config/testapp-config-in-envelope-fft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/tests/vbucket/config/testapp-config-in-envelope-fft -------------------------------------------------------------------------------- /tests/vbucket/config/testapp-config-in-envelope2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/tests/vbucket/config/testapp-config-in-envelope2 -------------------------------------------------------------------------------- /tests/vbucket/config/testapp-config-user-password1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/tests/vbucket/config/testapp-config-user-password1 -------------------------------------------------------------------------------- /tests/vbucket/config/testapp-config-user-password2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/tests/vbucket/config/testapp-config-user-password2 -------------------------------------------------------------------------------- /tests/vbucket/config/testapp-config-wrong-num-vbuckets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/tests/vbucket/config/testapp-config-wrong-num-vbuckets -------------------------------------------------------------------------------- /tests/vbucket/config/testapp-config-zero-num-vbuckets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/tests/vbucket/config/testapp-config-zero-num-vbuckets -------------------------------------------------------------------------------- /tests/vbucket/config/vbucket-eight-nodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/tests/vbucket/config/vbucket-eight-nodes -------------------------------------------------------------------------------- /tests/vbucket/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/tests/vbucket/macros.h -------------------------------------------------------------------------------- /tests/vbucket/regression.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/tests/vbucket/regression.c -------------------------------------------------------------------------------- /tests/vbucket/testapp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/tests/vbucket/testapp.c -------------------------------------------------------------------------------- /tests/vbucket/testketama.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/tests/vbucket/testketama.c -------------------------------------------------------------------------------- /vbucket/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/vbucket/crc32.c -------------------------------------------------------------------------------- /vbucket/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/vbucket/hash.h -------------------------------------------------------------------------------- /vbucket/ketama.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/vbucket/ketama.c -------------------------------------------------------------------------------- /vbucket/rfc1321/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/vbucket/rfc1321/global.h -------------------------------------------------------------------------------- /vbucket/rfc1321/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/vbucket/rfc1321/md5.h -------------------------------------------------------------------------------- /vbucket/rfc1321/md5c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/vbucket/rfc1321/md5c.c -------------------------------------------------------------------------------- /vbucket/vbucket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/vbucket/vbucket.c -------------------------------------------------------------------------------- /vbucket/vbucketkeygen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/vbucket/vbucketkeygen.c -------------------------------------------------------------------------------- /vbucket/vbuckettool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/membase/moxi/HEAD/vbucket/vbuckettool.c --------------------------------------------------------------------------------