├── .gitignore ├── 00-RELEASENOTES ├── BUGS ├── CONTRIBUTING ├── COPYING ├── INSTALL ├── MANIFESTO ├── Makefile ├── README.md ├── deps ├── Makefile ├── hiredis │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── COPYING │ ├── Makefile │ ├── README.md │ ├── adapters │ │ ├── ae.h │ │ ├── libev.h │ │ ├── libevent.h │ │ └── libuv.h │ ├── async.c │ ├── async.h │ ├── dict.c │ ├── dict.h │ ├── examples │ │ ├── example-ae.c │ │ ├── example-libev.c │ │ ├── example-libevent.c │ │ ├── example-libuv.c │ │ └── example.c │ ├── fmacros.h │ ├── hiredis.c │ ├── hiredis.h │ ├── net.c │ ├── net.h │ ├── sds.c │ ├── sds.h │ ├── test.c │ └── zmalloc.h ├── jemalloc │ ├── .gitignore │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── Makefile.in │ ├── README │ ├── VERSION │ ├── autogen.sh │ ├── bin │ │ ├── jemalloc.sh.in │ │ └── pprof │ ├── config.guess │ ├── config.stamp.in │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── coverage.sh │ ├── doc │ │ ├── html.xsl.in │ │ ├── jemalloc.3 │ │ ├── jemalloc.html │ │ ├── jemalloc.xml.in │ │ ├── manpages.xsl.in │ │ └── stylesheet.xsl │ ├── include │ │ ├── jemalloc │ │ │ ├── internal │ │ │ │ ├── arena.h │ │ │ │ ├── atomic.h │ │ │ │ ├── base.h │ │ │ │ ├── bitmap.h │ │ │ │ ├── chunk.h │ │ │ │ ├── chunk_dss.h │ │ │ │ ├── chunk_mmap.h │ │ │ │ ├── ckh.h │ │ │ │ ├── ctl.h │ │ │ │ ├── extent.h │ │ │ │ ├── hash.h │ │ │ │ ├── huge.h │ │ │ │ ├── jemalloc_internal.h.in │ │ │ │ ├── jemalloc_internal_defs.h.in │ │ │ │ ├── jemalloc_internal_macros.h │ │ │ │ ├── mb.h │ │ │ │ ├── mutex.h │ │ │ │ ├── private_namespace.sh │ │ │ │ ├── private_symbols.txt │ │ │ │ ├── private_unnamespace.sh │ │ │ │ ├── prng.h │ │ │ │ ├── prof.h │ │ │ │ ├── public_namespace.sh │ │ │ │ ├── public_unnamespace.sh │ │ │ │ ├── ql.h │ │ │ │ ├── qr.h │ │ │ │ ├── quarantine.h │ │ │ │ ├── rb.h │ │ │ │ ├── rtree.h │ │ │ │ ├── size_classes.sh │ │ │ │ ├── stats.h │ │ │ │ ├── tcache.h │ │ │ │ ├── tsd.h │ │ │ │ └── util.h │ │ │ ├── jemalloc.sh │ │ │ ├── jemalloc_defs.h.in │ │ │ ├── jemalloc_macros.h.in │ │ │ ├── jemalloc_mangle.sh │ │ │ ├── jemalloc_protos.h.in │ │ │ └── jemalloc_rename.sh │ │ └── msvc_compat │ │ │ ├── inttypes.h │ │ │ ├── stdbool.h │ │ │ ├── stdint.h │ │ │ └── strings.h │ ├── install-sh │ ├── src │ │ ├── arena.c │ │ ├── atomic.c │ │ ├── base.c │ │ ├── bitmap.c │ │ ├── chunk.c │ │ ├── chunk_dss.c │ │ ├── chunk_mmap.c │ │ ├── ckh.c │ │ ├── ctl.c │ │ ├── extent.c │ │ ├── hash.c │ │ ├── huge.c │ │ ├── jemalloc.c │ │ ├── mb.c │ │ ├── mutex.c │ │ ├── prof.c │ │ ├── quarantine.c │ │ ├── rtree.c │ │ ├── stats.c │ │ ├── tcache.c │ │ ├── tsd.c │ │ ├── util.c │ │ └── zone.c │ └── test │ │ ├── include │ │ └── test │ │ │ ├── SFMT-alti.h │ │ │ ├── SFMT-params.h │ │ │ ├── SFMT-params11213.h │ │ │ ├── SFMT-params1279.h │ │ │ ├── SFMT-params132049.h │ │ │ ├── SFMT-params19937.h │ │ │ ├── SFMT-params216091.h │ │ │ ├── SFMT-params2281.h │ │ │ ├── SFMT-params4253.h │ │ │ ├── SFMT-params44497.h │ │ │ ├── SFMT-params607.h │ │ │ ├── SFMT-params86243.h │ │ │ ├── SFMT-sse2.h │ │ │ ├── SFMT.h │ │ │ ├── jemalloc_test.h.in │ │ │ ├── jemalloc_test_defs.h.in │ │ │ ├── math.h │ │ │ ├── mq.h │ │ │ ├── mtx.h │ │ │ ├── test.h │ │ │ └── thd.h │ │ ├── integration │ │ ├── MALLOCX_ARENA.c │ │ ├── aligned_alloc.c │ │ ├── allocated.c │ │ ├── allocm.c │ │ ├── mallocx.c │ │ ├── mremap.c │ │ ├── posix_memalign.c │ │ ├── rallocm.c │ │ ├── rallocx.c │ │ ├── thread_arena.c │ │ ├── thread_tcache_enabled.c │ │ └── xallocx.c │ │ ├── src │ │ ├── SFMT.c │ │ ├── math.c │ │ ├── mtx.c │ │ ├── test.c │ │ └── thd.c │ │ ├── test.sh.in │ │ └── unit │ │ ├── SFMT.c │ │ ├── bitmap.c │ │ ├── ckh.c │ │ ├── hash.c │ │ ├── junk.c │ │ ├── mallctl.c │ │ ├── math.c │ │ ├── mq.c │ │ ├── mtx.c │ │ ├── prof_accum.c │ │ ├── prof_accum.h │ │ ├── prof_accum_a.c │ │ ├── prof_accum_b.c │ │ ├── prof_gdump.c │ │ ├── prof_idump.c │ │ ├── ql.c │ │ ├── qr.c │ │ ├── quarantine.c │ │ ├── rb.c │ │ ├── rtree.c │ │ ├── stats.c │ │ ├── tsd.c │ │ ├── util.c │ │ └── zero.c ├── linenoise │ ├── .gitignore │ ├── Makefile │ ├── README.markdown │ ├── example.c │ ├── linenoise.c │ └── linenoise.h ├── lua │ ├── COPYRIGHT │ ├── HISTORY │ ├── INSTALL │ ├── Makefile │ ├── README │ ├── doc │ │ ├── contents.html │ │ ├── cover.png │ │ ├── logo.gif │ │ ├── lua.1 │ │ ├── lua.css │ │ ├── lua.html │ │ ├── luac.1 │ │ ├── luac.html │ │ ├── manual.css │ │ ├── manual.html │ │ └── readme.html │ ├── etc │ │ ├── Makefile │ │ ├── README │ │ ├── all.c │ │ ├── lua.hpp │ │ ├── lua.ico │ │ ├── lua.pc │ │ ├── luavs.bat │ │ ├── min.c │ │ ├── noparser.c │ │ └── strict.lua │ ├── src │ │ ├── Makefile │ │ ├── fpconv.c │ │ ├── fpconv.h │ │ ├── lapi.c │ │ ├── lapi.h │ │ ├── lauxlib.c │ │ ├── lauxlib.h │ │ ├── lbaselib.c │ │ ├── lcode.c │ │ ├── lcode.h │ │ ├── ldblib.c │ │ ├── ldebug.c │ │ ├── ldebug.h │ │ ├── ldo.c │ │ ├── ldo.h │ │ ├── ldump.c │ │ ├── lfunc.c │ │ ├── lfunc.h │ │ ├── lgc.c │ │ ├── lgc.h │ │ ├── linit.c │ │ ├── liolib.c │ │ ├── llex.c │ │ ├── llex.h │ │ ├── llimits.h │ │ ├── lmathlib.c │ │ ├── lmem.c │ │ ├── lmem.h │ │ ├── loadlib.c │ │ ├── lobject.c │ │ ├── lobject.h │ │ ├── lopcodes.c │ │ ├── lopcodes.h │ │ ├── loslib.c │ │ ├── lparser.c │ │ ├── lparser.h │ │ ├── lstate.c │ │ ├── lstate.h │ │ ├── lstring.c │ │ ├── lstring.h │ │ ├── lstrlib.c │ │ ├── ltable.c │ │ ├── ltable.h │ │ ├── ltablib.c │ │ ├── ltm.c │ │ ├── ltm.h │ │ ├── lua.c │ │ ├── lua.h │ │ ├── lua_bit.c │ │ ├── lua_cjson.c │ │ ├── lua_cmsgpack.c │ │ ├── lua_struct.c │ │ ├── luac.c │ │ ├── luaconf.h │ │ ├── lualib.h │ │ ├── lundump.c │ │ ├── lundump.h │ │ ├── lvm.c │ │ ├── lvm.h │ │ ├── lzio.c │ │ ├── lzio.h │ │ ├── print.c │ │ ├── strbuf.c │ │ └── strbuf.h │ └── test │ │ ├── README │ │ ├── bisect.lua │ │ ├── cf.lua │ │ ├── echo.lua │ │ ├── env.lua │ │ ├── factorial.lua │ │ ├── fib.lua │ │ ├── fibfor.lua │ │ ├── globals.lua │ │ ├── hello.lua │ │ ├── life.lua │ │ ├── luac.lua │ │ ├── printf.lua │ │ ├── readonly.lua │ │ ├── sieve.lua │ │ ├── sort.lua │ │ ├── table.lua │ │ ├── trace-calls.lua │ │ ├── trace-globals.lua │ │ └── xd.lua └── update-jemalloc.sh ├── hedis.yml ├── redis.conf ├── runtest ├── runtest-cluster ├── runtest-sentinel ├── sentinel.conf ├── src ├── .gitignore ├── Makefile ├── Makefile.dep ├── adlist.c ├── adlist.h ├── ae.c ├── ae.h ├── ae_epoll.c ├── ae_evport.c ├── ae_kqueue.c ├── ae_select.c ├── anet.c ├── anet.h ├── aof.c ├── asciilogo.h ├── bio.c ├── bio.h ├── bitops.c ├── blocked.c ├── cluster.c ├── cluster.h ├── config.c ├── config.h ├── crc16.c ├── crc64.c ├── crc64.h ├── db.c ├── debug.c ├── dict.c ├── dict.h ├── endianconv.c ├── endianconv.h ├── fmacros.h ├── hedis.c ├── hedis.h ├── help.h ├── hyperloglog.c ├── intset.c ├── intset.h ├── latency.c ├── latency.h ├── lzf.h ├── lzfP.h ├── lzf_c.c ├── lzf_d.c ├── memtest.c ├── mkreleasehdr.sh ├── multi.c ├── networking.c ├── notify.c ├── object.c ├── pqsort.c ├── pqsort.h ├── pubsub.c ├── quicklist.c ├── quicklist.h ├── rand.c ├── rand.h ├── rdb.c ├── rdb.h ├── redis-benchmark.c ├── redis-check-aof.c ├── redis-check-rdb.c ├── redis-cli.c ├── redis-trib.rb ├── redis.c ├── redis.h ├── redisassert.h ├── release.c ├── replication.c ├── rio.c ├── rio.h ├── scripting.c ├── sds.c ├── sds.h ├── sentinel.c ├── setproctitle.c ├── sha1.c ├── sha1.h ├── slowlog.c ├── slowlog.h ├── solarisfixes.h ├── sort.c ├── sparkline.c ├── sparkline.h ├── syncio.c ├── t_hash.c ├── t_list.c ├── t_set.c ├── t_string.c ├── t_zset.c ├── testhelp.h ├── util.c ├── util.h ├── valgrind.sup ├── version.h ├── ziplist.c ├── ziplist.h ├── zipmap.c ├── zipmap.h ├── zmalloc.c └── zmalloc.h ├── tests ├── assets │ ├── default.conf │ ├── encodings.rdb │ └── hash-zipmap.rdb ├── cluster │ ├── cluster.tcl │ ├── run.tcl │ ├── tests │ │ ├── 00-base.tcl │ │ ├── 01-faildet.tcl │ │ ├── 02-failover.tcl │ │ ├── 03-failover-loop.tcl │ │ ├── 04-resharding.tcl │ │ ├── 05-slave-selection.tcl │ │ ├── 06-slave-stop-cond.tcl │ │ ├── 07-replica-migration.tcl │ │ ├── 08-update-msg.tcl │ │ ├── 09-pubsub.tcl │ │ ├── 10-manual-failover.tcl │ │ ├── 11-manual-takeover.tcl │ │ ├── helpers │ │ │ └── onlydots.tcl │ │ └── includes │ │ │ └── init-tests.tcl │ └── tmp │ │ └── .gitignore ├── helpers │ ├── bg_complex_data.tcl │ └── gen_write_load.tcl ├── instances.tcl ├── integration │ ├── aof-race.tcl │ ├── aof.tcl │ ├── convert-zipmap-hash-on-load.tcl │ ├── logging.tcl │ ├── rdb.tcl │ ├── redis-cli.tcl │ ├── replication-2.tcl │ ├── replication-3.tcl │ ├── replication-4.tcl │ ├── replication-psync.tcl │ └── replication.tcl ├── sentinel │ ├── run.tcl │ ├── tests │ │ ├── 00-base.tcl │ │ ├── 01-conf-update.tcl │ │ ├── 02-slaves-reconf.tcl │ │ ├── 03-runtime-reconf.tcl │ │ ├── 04-slave-selection.tcl │ │ ├── 05-manual.tcl │ │ ├── 06-ckquorum.tcl │ │ └── includes │ │ │ └── init-tests.tcl │ └── tmp │ │ └── .gitignore ├── support │ ├── cluster.tcl │ ├── redis.tcl │ ├── server.tcl │ ├── test.tcl │ ├── tmpfile.tcl │ └── util.tcl ├── test_helper.tcl ├── tmp │ └── .gitignore └── unit │ ├── aofrw.tcl │ ├── auth.tcl │ ├── bitops.tcl │ ├── dump.tcl │ ├── expire.tcl │ ├── hyperloglog.tcl │ ├── introspection.tcl │ ├── keyspace.tcl │ ├── latency-monitor.tcl │ ├── limits.tcl │ ├── maxmemory.tcl │ ├── memefficiency.tcl │ ├── multi.tcl │ ├── obuf-limits.tcl │ ├── other.tcl │ ├── printver.tcl │ ├── protocol.tcl │ ├── pubsub.tcl │ ├── quit.tcl │ ├── scan.tcl │ ├── scripting.tcl │ ├── slowlog.tcl │ ├── sort.tcl │ └── type │ ├── hash.tcl │ ├── incr.tcl │ ├── list-2.tcl │ ├── list-3.tcl │ ├── list-common.tcl │ ├── list.tcl │ ├── set.tcl │ ├── string.tcl │ └── zset.tcl └── utils ├── build-static-symbols.tcl ├── cluster_fail_time.tcl ├── create-cluster ├── .gitignore ├── README └── create-cluster ├── generate-command-help.rb ├── hashtable ├── README └── rehashing.c ├── hyperloglog ├── .gitignore ├── hll-err.rb └── hll-gnuplot-graph.rb ├── install_server.sh ├── lru ├── README └── test-lru.rb ├── redis-copy.rb ├── redis-sha1.rb ├── redis_init_script ├── redis_init_script.tpl ├── releasetools ├── 01_create_tarball.sh ├── 02_upload_tarball.sh ├── 03_test_release.sh └── 04_release_hash.sh ├── speed-regression.tcl └── whatisdoing.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/.gitignore -------------------------------------------------------------------------------- /00-RELEASENOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/00-RELEASENOTES -------------------------------------------------------------------------------- /BUGS: -------------------------------------------------------------------------------- 1 | Please check https://github.com/antirez/redis/issues 2 | -------------------------------------------------------------------------------- /CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/CONTRIBUTING -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/COPYING -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- 1 | See README 2 | -------------------------------------------------------------------------------- /MANIFESTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/MANIFESTO -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/README.md -------------------------------------------------------------------------------- /deps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/Makefile -------------------------------------------------------------------------------- /deps/hiredis/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/hiredis/.gitignore -------------------------------------------------------------------------------- /deps/hiredis/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/hiredis/.travis.yml -------------------------------------------------------------------------------- /deps/hiredis/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/hiredis/CHANGELOG.md -------------------------------------------------------------------------------- /deps/hiredis/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/hiredis/COPYING -------------------------------------------------------------------------------- /deps/hiredis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/hiredis/Makefile -------------------------------------------------------------------------------- /deps/hiredis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/hiredis/README.md -------------------------------------------------------------------------------- /deps/hiredis/adapters/ae.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/hiredis/adapters/ae.h -------------------------------------------------------------------------------- /deps/hiredis/adapters/libev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/hiredis/adapters/libev.h -------------------------------------------------------------------------------- /deps/hiredis/adapters/libevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/hiredis/adapters/libevent.h -------------------------------------------------------------------------------- /deps/hiredis/adapters/libuv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/hiredis/adapters/libuv.h -------------------------------------------------------------------------------- /deps/hiredis/async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/hiredis/async.c -------------------------------------------------------------------------------- /deps/hiredis/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/hiredis/async.h -------------------------------------------------------------------------------- /deps/hiredis/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/hiredis/dict.c -------------------------------------------------------------------------------- /deps/hiredis/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/hiredis/dict.h -------------------------------------------------------------------------------- /deps/hiredis/examples/example-ae.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/hiredis/examples/example-ae.c -------------------------------------------------------------------------------- /deps/hiredis/examples/example-libev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/hiredis/examples/example-libev.c -------------------------------------------------------------------------------- /deps/hiredis/examples/example-libevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/hiredis/examples/example-libevent.c -------------------------------------------------------------------------------- /deps/hiredis/examples/example-libuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/hiredis/examples/example-libuv.c -------------------------------------------------------------------------------- /deps/hiredis/examples/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/hiredis/examples/example.c -------------------------------------------------------------------------------- /deps/hiredis/fmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/hiredis/fmacros.h -------------------------------------------------------------------------------- /deps/hiredis/hiredis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/hiredis/hiredis.c -------------------------------------------------------------------------------- /deps/hiredis/hiredis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/hiredis/hiredis.h -------------------------------------------------------------------------------- /deps/hiredis/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/hiredis/net.c -------------------------------------------------------------------------------- /deps/hiredis/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/hiredis/net.h -------------------------------------------------------------------------------- /deps/hiredis/sds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/hiredis/sds.c -------------------------------------------------------------------------------- /deps/hiredis/sds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/hiredis/sds.h -------------------------------------------------------------------------------- /deps/hiredis/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/hiredis/test.c -------------------------------------------------------------------------------- /deps/hiredis/zmalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/hiredis/zmalloc.h -------------------------------------------------------------------------------- /deps/jemalloc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/.gitignore -------------------------------------------------------------------------------- /deps/jemalloc/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/COPYING -------------------------------------------------------------------------------- /deps/jemalloc/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/ChangeLog -------------------------------------------------------------------------------- /deps/jemalloc/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/INSTALL -------------------------------------------------------------------------------- /deps/jemalloc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/Makefile.in -------------------------------------------------------------------------------- /deps/jemalloc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/README -------------------------------------------------------------------------------- /deps/jemalloc/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/VERSION -------------------------------------------------------------------------------- /deps/jemalloc/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/autogen.sh -------------------------------------------------------------------------------- /deps/jemalloc/bin/jemalloc.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/bin/jemalloc.sh.in -------------------------------------------------------------------------------- /deps/jemalloc/bin/pprof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/bin/pprof -------------------------------------------------------------------------------- /deps/jemalloc/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/config.guess -------------------------------------------------------------------------------- /deps/jemalloc/config.stamp.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/jemalloc/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/config.sub -------------------------------------------------------------------------------- /deps/jemalloc/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/configure -------------------------------------------------------------------------------- /deps/jemalloc/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/configure.ac -------------------------------------------------------------------------------- /deps/jemalloc/coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/coverage.sh -------------------------------------------------------------------------------- /deps/jemalloc/doc/html.xsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/doc/html.xsl.in -------------------------------------------------------------------------------- /deps/jemalloc/doc/jemalloc.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/doc/jemalloc.3 -------------------------------------------------------------------------------- /deps/jemalloc/doc/jemalloc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/doc/jemalloc.html -------------------------------------------------------------------------------- /deps/jemalloc/doc/jemalloc.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/doc/jemalloc.xml.in -------------------------------------------------------------------------------- /deps/jemalloc/doc/manpages.xsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/doc/manpages.xsl.in -------------------------------------------------------------------------------- /deps/jemalloc/doc/stylesheet.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/doc/stylesheet.xsl -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/include/jemalloc/internal/arena.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/include/jemalloc/internal/atomic.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/include/jemalloc/internal/base.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/include/jemalloc/internal/bitmap.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/chunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/include/jemalloc/internal/chunk.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/chunk_dss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/include/jemalloc/internal/chunk_dss.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/chunk_mmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/include/jemalloc/internal/chunk_mmap.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/ckh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/include/jemalloc/internal/ckh.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/ctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/include/jemalloc/internal/ctl.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/extent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/include/jemalloc/internal/extent.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/include/jemalloc/internal/hash.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/huge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/include/jemalloc/internal/huge.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/jemalloc_internal.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/include/jemalloc/internal/jemalloc_internal.h.in -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/jemalloc_internal_defs.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/include/jemalloc/internal/jemalloc_internal_defs.h.in -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/jemalloc_internal_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/include/jemalloc/internal/jemalloc_internal_macros.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/mb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/include/jemalloc/internal/mb.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/include/jemalloc/internal/mutex.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/private_namespace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/include/jemalloc/internal/private_namespace.sh -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/private_symbols.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/include/jemalloc/internal/private_symbols.txt -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/private_unnamespace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/include/jemalloc/internal/private_unnamespace.sh -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/prng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/include/jemalloc/internal/prng.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/prof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/include/jemalloc/internal/prof.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/public_namespace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/include/jemalloc/internal/public_namespace.sh -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/public_unnamespace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/include/jemalloc/internal/public_unnamespace.sh -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/ql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/include/jemalloc/internal/ql.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/qr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/include/jemalloc/internal/qr.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/quarantine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/include/jemalloc/internal/quarantine.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/rb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/include/jemalloc/internal/rb.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/rtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/include/jemalloc/internal/rtree.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/size_classes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/include/jemalloc/internal/size_classes.sh -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/include/jemalloc/internal/stats.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/tcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/include/jemalloc/internal/tcache.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/tsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/include/jemalloc/internal/tsd.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/include/jemalloc/internal/util.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/jemalloc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/include/jemalloc/jemalloc.sh -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/jemalloc_defs.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/include/jemalloc/jemalloc_defs.h.in -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/jemalloc_macros.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/include/jemalloc/jemalloc_macros.h.in -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/jemalloc_mangle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/include/jemalloc/jemalloc_mangle.sh -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/jemalloc_protos.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/include/jemalloc/jemalloc_protos.h.in -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/jemalloc_rename.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/include/jemalloc/jemalloc_rename.sh -------------------------------------------------------------------------------- /deps/jemalloc/include/msvc_compat/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/include/msvc_compat/inttypes.h -------------------------------------------------------------------------------- /deps/jemalloc/include/msvc_compat/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/include/msvc_compat/stdbool.h -------------------------------------------------------------------------------- /deps/jemalloc/include/msvc_compat/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/include/msvc_compat/stdint.h -------------------------------------------------------------------------------- /deps/jemalloc/include/msvc_compat/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/include/msvc_compat/strings.h -------------------------------------------------------------------------------- /deps/jemalloc/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/install-sh -------------------------------------------------------------------------------- /deps/jemalloc/src/arena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/src/arena.c -------------------------------------------------------------------------------- /deps/jemalloc/src/atomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/src/atomic.c -------------------------------------------------------------------------------- /deps/jemalloc/src/base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/src/base.c -------------------------------------------------------------------------------- /deps/jemalloc/src/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/src/bitmap.c -------------------------------------------------------------------------------- /deps/jemalloc/src/chunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/src/chunk.c -------------------------------------------------------------------------------- /deps/jemalloc/src/chunk_dss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/src/chunk_dss.c -------------------------------------------------------------------------------- /deps/jemalloc/src/chunk_mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/src/chunk_mmap.c -------------------------------------------------------------------------------- /deps/jemalloc/src/ckh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/src/ckh.c -------------------------------------------------------------------------------- /deps/jemalloc/src/ctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/src/ctl.c -------------------------------------------------------------------------------- /deps/jemalloc/src/extent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/src/extent.c -------------------------------------------------------------------------------- /deps/jemalloc/src/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/src/hash.c -------------------------------------------------------------------------------- /deps/jemalloc/src/huge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/src/huge.c -------------------------------------------------------------------------------- /deps/jemalloc/src/jemalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/src/jemalloc.c -------------------------------------------------------------------------------- /deps/jemalloc/src/mb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/src/mb.c -------------------------------------------------------------------------------- /deps/jemalloc/src/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/src/mutex.c -------------------------------------------------------------------------------- /deps/jemalloc/src/prof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/src/prof.c -------------------------------------------------------------------------------- /deps/jemalloc/src/quarantine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/src/quarantine.c -------------------------------------------------------------------------------- /deps/jemalloc/src/rtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/src/rtree.c -------------------------------------------------------------------------------- /deps/jemalloc/src/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/src/stats.c -------------------------------------------------------------------------------- /deps/jemalloc/src/tcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/src/tcache.c -------------------------------------------------------------------------------- /deps/jemalloc/src/tsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/src/tsd.c -------------------------------------------------------------------------------- /deps/jemalloc/src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/src/util.c -------------------------------------------------------------------------------- /deps/jemalloc/src/zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/src/zone.c -------------------------------------------------------------------------------- /deps/jemalloc/test/include/test/SFMT-alti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/include/test/SFMT-alti.h -------------------------------------------------------------------------------- /deps/jemalloc/test/include/test/SFMT-params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/include/test/SFMT-params.h -------------------------------------------------------------------------------- /deps/jemalloc/test/include/test/SFMT-params11213.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/include/test/SFMT-params11213.h -------------------------------------------------------------------------------- /deps/jemalloc/test/include/test/SFMT-params1279.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/include/test/SFMT-params1279.h -------------------------------------------------------------------------------- /deps/jemalloc/test/include/test/SFMT-params132049.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/include/test/SFMT-params132049.h -------------------------------------------------------------------------------- /deps/jemalloc/test/include/test/SFMT-params19937.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/include/test/SFMT-params19937.h -------------------------------------------------------------------------------- /deps/jemalloc/test/include/test/SFMT-params216091.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/include/test/SFMT-params216091.h -------------------------------------------------------------------------------- /deps/jemalloc/test/include/test/SFMT-params2281.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/include/test/SFMT-params2281.h -------------------------------------------------------------------------------- /deps/jemalloc/test/include/test/SFMT-params4253.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/include/test/SFMT-params4253.h -------------------------------------------------------------------------------- /deps/jemalloc/test/include/test/SFMT-params44497.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/include/test/SFMT-params44497.h -------------------------------------------------------------------------------- /deps/jemalloc/test/include/test/SFMT-params607.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/include/test/SFMT-params607.h -------------------------------------------------------------------------------- /deps/jemalloc/test/include/test/SFMT-params86243.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/include/test/SFMT-params86243.h -------------------------------------------------------------------------------- /deps/jemalloc/test/include/test/SFMT-sse2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/include/test/SFMT-sse2.h -------------------------------------------------------------------------------- /deps/jemalloc/test/include/test/SFMT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/include/test/SFMT.h -------------------------------------------------------------------------------- /deps/jemalloc/test/include/test/jemalloc_test.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/include/test/jemalloc_test.h.in -------------------------------------------------------------------------------- /deps/jemalloc/test/include/test/jemalloc_test_defs.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/include/test/jemalloc_test_defs.h.in -------------------------------------------------------------------------------- /deps/jemalloc/test/include/test/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/include/test/math.h -------------------------------------------------------------------------------- /deps/jemalloc/test/include/test/mq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/include/test/mq.h -------------------------------------------------------------------------------- /deps/jemalloc/test/include/test/mtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/include/test/mtx.h -------------------------------------------------------------------------------- /deps/jemalloc/test/include/test/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/include/test/test.h -------------------------------------------------------------------------------- /deps/jemalloc/test/include/test/thd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/include/test/thd.h -------------------------------------------------------------------------------- /deps/jemalloc/test/integration/MALLOCX_ARENA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/integration/MALLOCX_ARENA.c -------------------------------------------------------------------------------- /deps/jemalloc/test/integration/aligned_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/integration/aligned_alloc.c -------------------------------------------------------------------------------- /deps/jemalloc/test/integration/allocated.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/integration/allocated.c -------------------------------------------------------------------------------- /deps/jemalloc/test/integration/allocm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/integration/allocm.c -------------------------------------------------------------------------------- /deps/jemalloc/test/integration/mallocx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/integration/mallocx.c -------------------------------------------------------------------------------- /deps/jemalloc/test/integration/mremap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/integration/mremap.c -------------------------------------------------------------------------------- /deps/jemalloc/test/integration/posix_memalign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/integration/posix_memalign.c -------------------------------------------------------------------------------- /deps/jemalloc/test/integration/rallocm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/integration/rallocm.c -------------------------------------------------------------------------------- /deps/jemalloc/test/integration/rallocx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/integration/rallocx.c -------------------------------------------------------------------------------- /deps/jemalloc/test/integration/thread_arena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/integration/thread_arena.c -------------------------------------------------------------------------------- /deps/jemalloc/test/integration/thread_tcache_enabled.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/integration/thread_tcache_enabled.c -------------------------------------------------------------------------------- /deps/jemalloc/test/integration/xallocx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/integration/xallocx.c -------------------------------------------------------------------------------- /deps/jemalloc/test/src/SFMT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/src/SFMT.c -------------------------------------------------------------------------------- /deps/jemalloc/test/src/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/src/math.c -------------------------------------------------------------------------------- /deps/jemalloc/test/src/mtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/src/mtx.c -------------------------------------------------------------------------------- /deps/jemalloc/test/src/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/src/test.c -------------------------------------------------------------------------------- /deps/jemalloc/test/src/thd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/src/thd.c -------------------------------------------------------------------------------- /deps/jemalloc/test/test.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/test.sh.in -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/SFMT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/unit/SFMT.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/unit/bitmap.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/ckh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/unit/ckh.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/unit/hash.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/junk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/unit/junk.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/mallctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/unit/mallctl.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/unit/math.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/mq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/unit/mq.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/mtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/unit/mtx.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/prof_accum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/unit/prof_accum.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/prof_accum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/unit/prof_accum.h -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/prof_accum_a.c: -------------------------------------------------------------------------------- 1 | #include "prof_accum.h" 2 | 3 | alloc_n_gen(0) 4 | -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/prof_accum_b.c: -------------------------------------------------------------------------------- 1 | #include "prof_accum.h" 2 | 3 | alloc_n_gen(1) 4 | -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/prof_gdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/unit/prof_gdump.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/prof_idump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/unit/prof_idump.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/ql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/unit/ql.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/qr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/unit/qr.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/quarantine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/unit/quarantine.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/rb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/unit/rb.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/rtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/unit/rtree.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/unit/stats.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/tsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/unit/tsd.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/unit/util.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/zero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/jemalloc/test/unit/zero.c -------------------------------------------------------------------------------- /deps/linenoise/.gitignore: -------------------------------------------------------------------------------- 1 | linenoise_example 2 | *.dSYM 3 | history.txt 4 | -------------------------------------------------------------------------------- /deps/linenoise/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/linenoise/Makefile -------------------------------------------------------------------------------- /deps/linenoise/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/linenoise/README.markdown -------------------------------------------------------------------------------- /deps/linenoise/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/linenoise/example.c -------------------------------------------------------------------------------- /deps/linenoise/linenoise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/linenoise/linenoise.c -------------------------------------------------------------------------------- /deps/linenoise/linenoise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/linenoise/linenoise.h -------------------------------------------------------------------------------- /deps/lua/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/COPYRIGHT -------------------------------------------------------------------------------- /deps/lua/HISTORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/HISTORY -------------------------------------------------------------------------------- /deps/lua/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/INSTALL -------------------------------------------------------------------------------- /deps/lua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/Makefile -------------------------------------------------------------------------------- /deps/lua/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/README -------------------------------------------------------------------------------- /deps/lua/doc/contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/doc/contents.html -------------------------------------------------------------------------------- /deps/lua/doc/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/doc/cover.png -------------------------------------------------------------------------------- /deps/lua/doc/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/doc/logo.gif -------------------------------------------------------------------------------- /deps/lua/doc/lua.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/doc/lua.1 -------------------------------------------------------------------------------- /deps/lua/doc/lua.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/doc/lua.css -------------------------------------------------------------------------------- /deps/lua/doc/lua.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/doc/lua.html -------------------------------------------------------------------------------- /deps/lua/doc/luac.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/doc/luac.1 -------------------------------------------------------------------------------- /deps/lua/doc/luac.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/doc/luac.html -------------------------------------------------------------------------------- /deps/lua/doc/manual.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/doc/manual.css -------------------------------------------------------------------------------- /deps/lua/doc/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/doc/manual.html -------------------------------------------------------------------------------- /deps/lua/doc/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/doc/readme.html -------------------------------------------------------------------------------- /deps/lua/etc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/etc/Makefile -------------------------------------------------------------------------------- /deps/lua/etc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/etc/README -------------------------------------------------------------------------------- /deps/lua/etc/all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/etc/all.c -------------------------------------------------------------------------------- /deps/lua/etc/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/etc/lua.hpp -------------------------------------------------------------------------------- /deps/lua/etc/lua.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/etc/lua.ico -------------------------------------------------------------------------------- /deps/lua/etc/lua.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/etc/lua.pc -------------------------------------------------------------------------------- /deps/lua/etc/luavs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/etc/luavs.bat -------------------------------------------------------------------------------- /deps/lua/etc/min.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/etc/min.c -------------------------------------------------------------------------------- /deps/lua/etc/noparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/etc/noparser.c -------------------------------------------------------------------------------- /deps/lua/etc/strict.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/etc/strict.lua -------------------------------------------------------------------------------- /deps/lua/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/Makefile -------------------------------------------------------------------------------- /deps/lua/src/fpconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/fpconv.c -------------------------------------------------------------------------------- /deps/lua/src/fpconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/fpconv.h -------------------------------------------------------------------------------- /deps/lua/src/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/lapi.c -------------------------------------------------------------------------------- /deps/lua/src/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/lapi.h -------------------------------------------------------------------------------- /deps/lua/src/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/lauxlib.c -------------------------------------------------------------------------------- /deps/lua/src/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/lauxlib.h -------------------------------------------------------------------------------- /deps/lua/src/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/lbaselib.c -------------------------------------------------------------------------------- /deps/lua/src/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/lcode.c -------------------------------------------------------------------------------- /deps/lua/src/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/lcode.h -------------------------------------------------------------------------------- /deps/lua/src/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/ldblib.c -------------------------------------------------------------------------------- /deps/lua/src/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/ldebug.c -------------------------------------------------------------------------------- /deps/lua/src/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/ldebug.h -------------------------------------------------------------------------------- /deps/lua/src/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/ldo.c -------------------------------------------------------------------------------- /deps/lua/src/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/ldo.h -------------------------------------------------------------------------------- /deps/lua/src/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/ldump.c -------------------------------------------------------------------------------- /deps/lua/src/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/lfunc.c -------------------------------------------------------------------------------- /deps/lua/src/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/lfunc.h -------------------------------------------------------------------------------- /deps/lua/src/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/lgc.c -------------------------------------------------------------------------------- /deps/lua/src/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/lgc.h -------------------------------------------------------------------------------- /deps/lua/src/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/linit.c -------------------------------------------------------------------------------- /deps/lua/src/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/liolib.c -------------------------------------------------------------------------------- /deps/lua/src/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/llex.c -------------------------------------------------------------------------------- /deps/lua/src/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/llex.h -------------------------------------------------------------------------------- /deps/lua/src/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/llimits.h -------------------------------------------------------------------------------- /deps/lua/src/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/lmathlib.c -------------------------------------------------------------------------------- /deps/lua/src/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/lmem.c -------------------------------------------------------------------------------- /deps/lua/src/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/lmem.h -------------------------------------------------------------------------------- /deps/lua/src/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/loadlib.c -------------------------------------------------------------------------------- /deps/lua/src/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/lobject.c -------------------------------------------------------------------------------- /deps/lua/src/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/lobject.h -------------------------------------------------------------------------------- /deps/lua/src/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/lopcodes.c -------------------------------------------------------------------------------- /deps/lua/src/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/lopcodes.h -------------------------------------------------------------------------------- /deps/lua/src/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/loslib.c -------------------------------------------------------------------------------- /deps/lua/src/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/lparser.c -------------------------------------------------------------------------------- /deps/lua/src/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/lparser.h -------------------------------------------------------------------------------- /deps/lua/src/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/lstate.c -------------------------------------------------------------------------------- /deps/lua/src/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/lstate.h -------------------------------------------------------------------------------- /deps/lua/src/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/lstring.c -------------------------------------------------------------------------------- /deps/lua/src/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/lstring.h -------------------------------------------------------------------------------- /deps/lua/src/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/lstrlib.c -------------------------------------------------------------------------------- /deps/lua/src/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/ltable.c -------------------------------------------------------------------------------- /deps/lua/src/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/ltable.h -------------------------------------------------------------------------------- /deps/lua/src/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/ltablib.c -------------------------------------------------------------------------------- /deps/lua/src/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/ltm.c -------------------------------------------------------------------------------- /deps/lua/src/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/ltm.h -------------------------------------------------------------------------------- /deps/lua/src/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/lua.c -------------------------------------------------------------------------------- /deps/lua/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/lua.h -------------------------------------------------------------------------------- /deps/lua/src/lua_bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/lua_bit.c -------------------------------------------------------------------------------- /deps/lua/src/lua_cjson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/lua_cjson.c -------------------------------------------------------------------------------- /deps/lua/src/lua_cmsgpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/lua_cmsgpack.c -------------------------------------------------------------------------------- /deps/lua/src/lua_struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/lua_struct.c -------------------------------------------------------------------------------- /deps/lua/src/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/luac.c -------------------------------------------------------------------------------- /deps/lua/src/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/luaconf.h -------------------------------------------------------------------------------- /deps/lua/src/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/lualib.h -------------------------------------------------------------------------------- /deps/lua/src/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/lundump.c -------------------------------------------------------------------------------- /deps/lua/src/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/lundump.h -------------------------------------------------------------------------------- /deps/lua/src/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/lvm.c -------------------------------------------------------------------------------- /deps/lua/src/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/lvm.h -------------------------------------------------------------------------------- /deps/lua/src/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/lzio.c -------------------------------------------------------------------------------- /deps/lua/src/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/lzio.h -------------------------------------------------------------------------------- /deps/lua/src/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/print.c -------------------------------------------------------------------------------- /deps/lua/src/strbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/strbuf.c -------------------------------------------------------------------------------- /deps/lua/src/strbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/src/strbuf.h -------------------------------------------------------------------------------- /deps/lua/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/test/README -------------------------------------------------------------------------------- /deps/lua/test/bisect.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/test/bisect.lua -------------------------------------------------------------------------------- /deps/lua/test/cf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/test/cf.lua -------------------------------------------------------------------------------- /deps/lua/test/echo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/test/echo.lua -------------------------------------------------------------------------------- /deps/lua/test/env.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/test/env.lua -------------------------------------------------------------------------------- /deps/lua/test/factorial.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/test/factorial.lua -------------------------------------------------------------------------------- /deps/lua/test/fib.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/test/fib.lua -------------------------------------------------------------------------------- /deps/lua/test/fibfor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/test/fibfor.lua -------------------------------------------------------------------------------- /deps/lua/test/globals.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/test/globals.lua -------------------------------------------------------------------------------- /deps/lua/test/hello.lua: -------------------------------------------------------------------------------- 1 | -- the first program in every language 2 | 3 | io.write("Hello world, from ",_VERSION,"!\n") 4 | -------------------------------------------------------------------------------- /deps/lua/test/life.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/test/life.lua -------------------------------------------------------------------------------- /deps/lua/test/luac.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/test/luac.lua -------------------------------------------------------------------------------- /deps/lua/test/printf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/test/printf.lua -------------------------------------------------------------------------------- /deps/lua/test/readonly.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/test/readonly.lua -------------------------------------------------------------------------------- /deps/lua/test/sieve.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/test/sieve.lua -------------------------------------------------------------------------------- /deps/lua/test/sort.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/test/sort.lua -------------------------------------------------------------------------------- /deps/lua/test/table.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/test/table.lua -------------------------------------------------------------------------------- /deps/lua/test/trace-calls.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/test/trace-calls.lua -------------------------------------------------------------------------------- /deps/lua/test/trace-globals.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/test/trace-globals.lua -------------------------------------------------------------------------------- /deps/lua/test/xd.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/lua/test/xd.lua -------------------------------------------------------------------------------- /deps/update-jemalloc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/deps/update-jemalloc.sh -------------------------------------------------------------------------------- /hedis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/hedis.yml -------------------------------------------------------------------------------- /redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/redis.conf -------------------------------------------------------------------------------- /runtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/runtest -------------------------------------------------------------------------------- /runtest-cluster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/runtest-cluster -------------------------------------------------------------------------------- /runtest-sentinel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/runtest-sentinel -------------------------------------------------------------------------------- /sentinel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/sentinel.conf -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/Makefile.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/Makefile.dep -------------------------------------------------------------------------------- /src/adlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/adlist.c -------------------------------------------------------------------------------- /src/adlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/adlist.h -------------------------------------------------------------------------------- /src/ae.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/ae.c -------------------------------------------------------------------------------- /src/ae.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/ae.h -------------------------------------------------------------------------------- /src/ae_epoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/ae_epoll.c -------------------------------------------------------------------------------- /src/ae_evport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/ae_evport.c -------------------------------------------------------------------------------- /src/ae_kqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/ae_kqueue.c -------------------------------------------------------------------------------- /src/ae_select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/ae_select.c -------------------------------------------------------------------------------- /src/anet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/anet.c -------------------------------------------------------------------------------- /src/anet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/anet.h -------------------------------------------------------------------------------- /src/aof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/aof.c -------------------------------------------------------------------------------- /src/asciilogo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/asciilogo.h -------------------------------------------------------------------------------- /src/bio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/bio.c -------------------------------------------------------------------------------- /src/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/bio.h -------------------------------------------------------------------------------- /src/bitops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/bitops.c -------------------------------------------------------------------------------- /src/blocked.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/blocked.c -------------------------------------------------------------------------------- /src/cluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/cluster.c -------------------------------------------------------------------------------- /src/cluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/cluster.h -------------------------------------------------------------------------------- /src/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/config.c -------------------------------------------------------------------------------- /src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/config.h -------------------------------------------------------------------------------- /src/crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/crc16.c -------------------------------------------------------------------------------- /src/crc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/crc64.c -------------------------------------------------------------------------------- /src/crc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/crc64.h -------------------------------------------------------------------------------- /src/db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/db.c -------------------------------------------------------------------------------- /src/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/debug.c -------------------------------------------------------------------------------- /src/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/dict.c -------------------------------------------------------------------------------- /src/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/dict.h -------------------------------------------------------------------------------- /src/endianconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/endianconv.c -------------------------------------------------------------------------------- /src/endianconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/endianconv.h -------------------------------------------------------------------------------- /src/fmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/fmacros.h -------------------------------------------------------------------------------- /src/hedis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/hedis.c -------------------------------------------------------------------------------- /src/hedis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/hedis.h -------------------------------------------------------------------------------- /src/help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/help.h -------------------------------------------------------------------------------- /src/hyperloglog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/hyperloglog.c -------------------------------------------------------------------------------- /src/intset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/intset.c -------------------------------------------------------------------------------- /src/intset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/intset.h -------------------------------------------------------------------------------- /src/latency.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/latency.c -------------------------------------------------------------------------------- /src/latency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/latency.h -------------------------------------------------------------------------------- /src/lzf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/lzf.h -------------------------------------------------------------------------------- /src/lzfP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/lzfP.h -------------------------------------------------------------------------------- /src/lzf_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/lzf_c.c -------------------------------------------------------------------------------- /src/lzf_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/lzf_d.c -------------------------------------------------------------------------------- /src/memtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/memtest.c -------------------------------------------------------------------------------- /src/mkreleasehdr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/mkreleasehdr.sh -------------------------------------------------------------------------------- /src/multi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/multi.c -------------------------------------------------------------------------------- /src/networking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/networking.c -------------------------------------------------------------------------------- /src/notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/notify.c -------------------------------------------------------------------------------- /src/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/object.c -------------------------------------------------------------------------------- /src/pqsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/pqsort.c -------------------------------------------------------------------------------- /src/pqsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/pqsort.h -------------------------------------------------------------------------------- /src/pubsub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/pubsub.c -------------------------------------------------------------------------------- /src/quicklist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/quicklist.c -------------------------------------------------------------------------------- /src/quicklist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/quicklist.h -------------------------------------------------------------------------------- /src/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/rand.c -------------------------------------------------------------------------------- /src/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/rand.h -------------------------------------------------------------------------------- /src/rdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/rdb.c -------------------------------------------------------------------------------- /src/rdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/rdb.h -------------------------------------------------------------------------------- /src/redis-benchmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/redis-benchmark.c -------------------------------------------------------------------------------- /src/redis-check-aof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/redis-check-aof.c -------------------------------------------------------------------------------- /src/redis-check-rdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/redis-check-rdb.c -------------------------------------------------------------------------------- /src/redis-cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/redis-cli.c -------------------------------------------------------------------------------- /src/redis-trib.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/redis-trib.rb -------------------------------------------------------------------------------- /src/redis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/redis.c -------------------------------------------------------------------------------- /src/redis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/redis.h -------------------------------------------------------------------------------- /src/redisassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/redisassert.h -------------------------------------------------------------------------------- /src/release.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/release.c -------------------------------------------------------------------------------- /src/replication.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/replication.c -------------------------------------------------------------------------------- /src/rio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/rio.c -------------------------------------------------------------------------------- /src/rio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/rio.h -------------------------------------------------------------------------------- /src/scripting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/scripting.c -------------------------------------------------------------------------------- /src/sds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/sds.c -------------------------------------------------------------------------------- /src/sds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/sds.h -------------------------------------------------------------------------------- /src/sentinel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/sentinel.c -------------------------------------------------------------------------------- /src/setproctitle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/setproctitle.c -------------------------------------------------------------------------------- /src/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/sha1.c -------------------------------------------------------------------------------- /src/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/sha1.h -------------------------------------------------------------------------------- /src/slowlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/slowlog.c -------------------------------------------------------------------------------- /src/slowlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/slowlog.h -------------------------------------------------------------------------------- /src/solarisfixes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/solarisfixes.h -------------------------------------------------------------------------------- /src/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/sort.c -------------------------------------------------------------------------------- /src/sparkline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/sparkline.c -------------------------------------------------------------------------------- /src/sparkline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/sparkline.h -------------------------------------------------------------------------------- /src/syncio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/syncio.c -------------------------------------------------------------------------------- /src/t_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/t_hash.c -------------------------------------------------------------------------------- /src/t_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/t_list.c -------------------------------------------------------------------------------- /src/t_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/t_set.c -------------------------------------------------------------------------------- /src/t_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/t_string.c -------------------------------------------------------------------------------- /src/t_zset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/t_zset.c -------------------------------------------------------------------------------- /src/testhelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/testhelp.h -------------------------------------------------------------------------------- /src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/util.c -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/util.h -------------------------------------------------------------------------------- /src/valgrind.sup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/valgrind.sup -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- 1 | #define REDIS_VERSION "3.1.999" 2 | -------------------------------------------------------------------------------- /src/ziplist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/ziplist.c -------------------------------------------------------------------------------- /src/ziplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/ziplist.h -------------------------------------------------------------------------------- /src/zipmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/zipmap.c -------------------------------------------------------------------------------- /src/zipmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/zipmap.h -------------------------------------------------------------------------------- /src/zmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/zmalloc.c -------------------------------------------------------------------------------- /src/zmalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/src/zmalloc.h -------------------------------------------------------------------------------- /tests/assets/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/assets/default.conf -------------------------------------------------------------------------------- /tests/assets/encodings.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/assets/encodings.rdb -------------------------------------------------------------------------------- /tests/assets/hash-zipmap.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/assets/hash-zipmap.rdb -------------------------------------------------------------------------------- /tests/cluster/cluster.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/cluster/cluster.tcl -------------------------------------------------------------------------------- /tests/cluster/run.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/cluster/run.tcl -------------------------------------------------------------------------------- /tests/cluster/tests/00-base.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/cluster/tests/00-base.tcl -------------------------------------------------------------------------------- /tests/cluster/tests/01-faildet.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/cluster/tests/01-faildet.tcl -------------------------------------------------------------------------------- /tests/cluster/tests/02-failover.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/cluster/tests/02-failover.tcl -------------------------------------------------------------------------------- /tests/cluster/tests/03-failover-loop.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/cluster/tests/03-failover-loop.tcl -------------------------------------------------------------------------------- /tests/cluster/tests/04-resharding.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/cluster/tests/04-resharding.tcl -------------------------------------------------------------------------------- /tests/cluster/tests/05-slave-selection.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/cluster/tests/05-slave-selection.tcl -------------------------------------------------------------------------------- /tests/cluster/tests/06-slave-stop-cond.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/cluster/tests/06-slave-stop-cond.tcl -------------------------------------------------------------------------------- /tests/cluster/tests/07-replica-migration.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/cluster/tests/07-replica-migration.tcl -------------------------------------------------------------------------------- /tests/cluster/tests/08-update-msg.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/cluster/tests/08-update-msg.tcl -------------------------------------------------------------------------------- /tests/cluster/tests/09-pubsub.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/cluster/tests/09-pubsub.tcl -------------------------------------------------------------------------------- /tests/cluster/tests/10-manual-failover.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/cluster/tests/10-manual-failover.tcl -------------------------------------------------------------------------------- /tests/cluster/tests/11-manual-takeover.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/cluster/tests/11-manual-takeover.tcl -------------------------------------------------------------------------------- /tests/cluster/tests/helpers/onlydots.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/cluster/tests/helpers/onlydots.tcl -------------------------------------------------------------------------------- /tests/cluster/tests/includes/init-tests.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/cluster/tests/includes/init-tests.tcl -------------------------------------------------------------------------------- /tests/cluster/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | redis_* 2 | sentinel_* 3 | -------------------------------------------------------------------------------- /tests/helpers/bg_complex_data.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/helpers/bg_complex_data.tcl -------------------------------------------------------------------------------- /tests/helpers/gen_write_load.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/helpers/gen_write_load.tcl -------------------------------------------------------------------------------- /tests/instances.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/instances.tcl -------------------------------------------------------------------------------- /tests/integration/aof-race.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/integration/aof-race.tcl -------------------------------------------------------------------------------- /tests/integration/aof.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/integration/aof.tcl -------------------------------------------------------------------------------- /tests/integration/convert-zipmap-hash-on-load.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/integration/convert-zipmap-hash-on-load.tcl -------------------------------------------------------------------------------- /tests/integration/logging.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/integration/logging.tcl -------------------------------------------------------------------------------- /tests/integration/rdb.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/integration/rdb.tcl -------------------------------------------------------------------------------- /tests/integration/redis-cli.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/integration/redis-cli.tcl -------------------------------------------------------------------------------- /tests/integration/replication-2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/integration/replication-2.tcl -------------------------------------------------------------------------------- /tests/integration/replication-3.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/integration/replication-3.tcl -------------------------------------------------------------------------------- /tests/integration/replication-4.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/integration/replication-4.tcl -------------------------------------------------------------------------------- /tests/integration/replication-psync.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/integration/replication-psync.tcl -------------------------------------------------------------------------------- /tests/integration/replication.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/integration/replication.tcl -------------------------------------------------------------------------------- /tests/sentinel/run.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/sentinel/run.tcl -------------------------------------------------------------------------------- /tests/sentinel/tests/00-base.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/sentinel/tests/00-base.tcl -------------------------------------------------------------------------------- /tests/sentinel/tests/01-conf-update.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/sentinel/tests/01-conf-update.tcl -------------------------------------------------------------------------------- /tests/sentinel/tests/02-slaves-reconf.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/sentinel/tests/02-slaves-reconf.tcl -------------------------------------------------------------------------------- /tests/sentinel/tests/03-runtime-reconf.tcl: -------------------------------------------------------------------------------- 1 | # Test runtime reconfiguration command SENTINEL SET. 2 | -------------------------------------------------------------------------------- /tests/sentinel/tests/04-slave-selection.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/sentinel/tests/04-slave-selection.tcl -------------------------------------------------------------------------------- /tests/sentinel/tests/05-manual.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/sentinel/tests/05-manual.tcl -------------------------------------------------------------------------------- /tests/sentinel/tests/06-ckquorum.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/sentinel/tests/06-ckquorum.tcl -------------------------------------------------------------------------------- /tests/sentinel/tests/includes/init-tests.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/sentinel/tests/includes/init-tests.tcl -------------------------------------------------------------------------------- /tests/sentinel/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | redis_* 2 | sentinel_* 3 | -------------------------------------------------------------------------------- /tests/support/cluster.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/support/cluster.tcl -------------------------------------------------------------------------------- /tests/support/redis.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/support/redis.tcl -------------------------------------------------------------------------------- /tests/support/server.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/support/server.tcl -------------------------------------------------------------------------------- /tests/support/test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/support/test.tcl -------------------------------------------------------------------------------- /tests/support/tmpfile.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/support/tmpfile.tcl -------------------------------------------------------------------------------- /tests/support/util.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/support/util.tcl -------------------------------------------------------------------------------- /tests/test_helper.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/test_helper.tcl -------------------------------------------------------------------------------- /tests/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /tests/unit/aofrw.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/unit/aofrw.tcl -------------------------------------------------------------------------------- /tests/unit/auth.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/unit/auth.tcl -------------------------------------------------------------------------------- /tests/unit/bitops.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/unit/bitops.tcl -------------------------------------------------------------------------------- /tests/unit/dump.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/unit/dump.tcl -------------------------------------------------------------------------------- /tests/unit/expire.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/unit/expire.tcl -------------------------------------------------------------------------------- /tests/unit/hyperloglog.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/unit/hyperloglog.tcl -------------------------------------------------------------------------------- /tests/unit/introspection.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/unit/introspection.tcl -------------------------------------------------------------------------------- /tests/unit/keyspace.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/unit/keyspace.tcl -------------------------------------------------------------------------------- /tests/unit/latency-monitor.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/unit/latency-monitor.tcl -------------------------------------------------------------------------------- /tests/unit/limits.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/unit/limits.tcl -------------------------------------------------------------------------------- /tests/unit/maxmemory.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/unit/maxmemory.tcl -------------------------------------------------------------------------------- /tests/unit/memefficiency.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/unit/memefficiency.tcl -------------------------------------------------------------------------------- /tests/unit/multi.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/unit/multi.tcl -------------------------------------------------------------------------------- /tests/unit/obuf-limits.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/unit/obuf-limits.tcl -------------------------------------------------------------------------------- /tests/unit/other.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/unit/other.tcl -------------------------------------------------------------------------------- /tests/unit/printver.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/unit/printver.tcl -------------------------------------------------------------------------------- /tests/unit/protocol.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/unit/protocol.tcl -------------------------------------------------------------------------------- /tests/unit/pubsub.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/unit/pubsub.tcl -------------------------------------------------------------------------------- /tests/unit/quit.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/unit/quit.tcl -------------------------------------------------------------------------------- /tests/unit/scan.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/unit/scan.tcl -------------------------------------------------------------------------------- /tests/unit/scripting.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/unit/scripting.tcl -------------------------------------------------------------------------------- /tests/unit/slowlog.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/unit/slowlog.tcl -------------------------------------------------------------------------------- /tests/unit/sort.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/unit/sort.tcl -------------------------------------------------------------------------------- /tests/unit/type/hash.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/unit/type/hash.tcl -------------------------------------------------------------------------------- /tests/unit/type/incr.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/unit/type/incr.tcl -------------------------------------------------------------------------------- /tests/unit/type/list-2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/unit/type/list-2.tcl -------------------------------------------------------------------------------- /tests/unit/type/list-3.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/unit/type/list-3.tcl -------------------------------------------------------------------------------- /tests/unit/type/list-common.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/unit/type/list-common.tcl -------------------------------------------------------------------------------- /tests/unit/type/list.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/unit/type/list.tcl -------------------------------------------------------------------------------- /tests/unit/type/set.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/unit/type/set.tcl -------------------------------------------------------------------------------- /tests/unit/type/string.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/unit/type/string.tcl -------------------------------------------------------------------------------- /tests/unit/type/zset.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/tests/unit/type/zset.tcl -------------------------------------------------------------------------------- /utils/build-static-symbols.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/utils/build-static-symbols.tcl -------------------------------------------------------------------------------- /utils/cluster_fail_time.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/utils/cluster_fail_time.tcl -------------------------------------------------------------------------------- /utils/create-cluster/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/utils/create-cluster/.gitignore -------------------------------------------------------------------------------- /utils/create-cluster/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/utils/create-cluster/README -------------------------------------------------------------------------------- /utils/create-cluster/create-cluster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/utils/create-cluster/create-cluster -------------------------------------------------------------------------------- /utils/generate-command-help.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/utils/generate-command-help.rb -------------------------------------------------------------------------------- /utils/hashtable/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/utils/hashtable/README -------------------------------------------------------------------------------- /utils/hashtable/rehashing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/utils/hashtable/rehashing.c -------------------------------------------------------------------------------- /utils/hyperloglog/.gitignore: -------------------------------------------------------------------------------- 1 | *.txt 2 | -------------------------------------------------------------------------------- /utils/hyperloglog/hll-err.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/utils/hyperloglog/hll-err.rb -------------------------------------------------------------------------------- /utils/hyperloglog/hll-gnuplot-graph.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/utils/hyperloglog/hll-gnuplot-graph.rb -------------------------------------------------------------------------------- /utils/install_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/utils/install_server.sh -------------------------------------------------------------------------------- /utils/lru/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/utils/lru/README -------------------------------------------------------------------------------- /utils/lru/test-lru.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/utils/lru/test-lru.rb -------------------------------------------------------------------------------- /utils/redis-copy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/utils/redis-copy.rb -------------------------------------------------------------------------------- /utils/redis-sha1.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/utils/redis-sha1.rb -------------------------------------------------------------------------------- /utils/redis_init_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/utils/redis_init_script -------------------------------------------------------------------------------- /utils/redis_init_script.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/utils/redis_init_script.tpl -------------------------------------------------------------------------------- /utils/releasetools/01_create_tarball.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/utils/releasetools/01_create_tarball.sh -------------------------------------------------------------------------------- /utils/releasetools/02_upload_tarball.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/utils/releasetools/02_upload_tarball.sh -------------------------------------------------------------------------------- /utils/releasetools/03_test_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/utils/releasetools/03_test_release.sh -------------------------------------------------------------------------------- /utils/releasetools/04_release_hash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/utils/releasetools/04_release_hash.sh -------------------------------------------------------------------------------- /utils/speed-regression.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/utils/speed-regression.tcl -------------------------------------------------------------------------------- /utils/whatisdoing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedisdb/hedis/HEAD/utils/whatisdoing.sh --------------------------------------------------------------------------------