├── .codespell ├── .codespellrc ├── requirements.txt └── wordlist.txt ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── crash_report.md │ ├── feature_request.md │ ├── other_stuff.md │ └── question.md ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── codeql-analysis.yml │ ├── daily.yml │ ├── external.yml │ └── spell-check.yml ├── .gitignore ├── 00-RELEASENOTES ├── BUGS ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── COPYING ├── INSTALL ├── MANIFESTO ├── Makefile ├── README.md ├── SECURITY.md ├── TLS.md ├── deps ├── Makefile ├── README.md ├── fpconv │ ├── LICENSE.txt │ ├── Makefile │ ├── README.md │ ├── fpconv_dtoa.c │ ├── fpconv_dtoa.h │ └── fpconv_powers.h ├── hdr_histogram │ ├── COPYING.txt │ ├── LICENSE.txt │ ├── Makefile │ ├── README.md │ ├── hdr_atomic.h │ ├── hdr_histogram.c │ ├── hdr_histogram.h │ ├── hdr_redis_malloc.h │ └── hdr_tests.h ├── hiredis │ ├── .github │ │ └── workflows │ │ │ └── build.yml │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── CMakeLists.txt │ ├── COPYING │ ├── Makefile │ ├── README.md │ ├── adapters │ │ ├── ae.h │ │ ├── glib.h │ │ ├── ivykis.h │ │ ├── libev.h │ │ ├── libevent.h │ │ ├── libuv.h │ │ ├── macosx.h │ │ └── qt.h │ ├── alloc.c │ ├── alloc.h │ ├── appveyor.yml │ ├── async.c │ ├── async.h │ ├── async_private.h │ ├── dict.c │ ├── dict.h │ ├── examples │ │ ├── CMakeLists.txt │ │ ├── example-ae.c │ │ ├── example-glib.c │ │ ├── example-ivykis.c │ │ ├── example-libev.c │ │ ├── example-libevent-ssl.c │ │ ├── example-libevent.c │ │ ├── example-libuv.c │ │ ├── example-macosx.c │ │ ├── example-push.c │ │ ├── example-qt.cpp │ │ ├── example-qt.h │ │ ├── example-ssl.c │ │ └── example.c │ ├── fmacros.h │ ├── fuzzing │ │ └── format_command_fuzzer.c │ ├── hiredis-config.cmake.in │ ├── hiredis.c │ ├── hiredis.h │ ├── hiredis.pc.in │ ├── hiredis.targets │ ├── hiredis_ssl-config.cmake.in │ ├── hiredis_ssl.h │ ├── hiredis_ssl.pc.in │ ├── net.c │ ├── net.h │ ├── read.c │ ├── read.h │ ├── sds.c │ ├── sds.h │ ├── sdsalloc.h │ ├── sdscompat.h │ ├── sockcompat.c │ ├── sockcompat.h │ ├── ssl.c │ ├── test.c │ ├── test.sh │ └── win32.h ├── jemalloc │ ├── .appveyor.yml │ ├── .autom4te.cfg │ ├── .cirrus.yml │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL.md │ ├── Makefile.in │ ├── README │ ├── TUNING.md │ ├── VERSION │ ├── autogen.sh │ ├── bin │ │ ├── jemalloc-config.in │ │ ├── jemalloc.sh.in │ │ └── jeprof.in │ ├── build-aux │ │ ├── config.guess │ │ ├── config.sub │ │ └── install-sh │ ├── config.stamp.in │ ├── configure │ ├── configure.ac │ ├── doc │ │ ├── html.xsl.in │ │ ├── jemalloc.xml.in │ │ ├── manpages.xsl.in │ │ └── stylesheet.xsl │ ├── include │ │ ├── jemalloc │ │ │ ├── internal │ │ │ │ ├── arena_externs.h │ │ │ │ ├── arena_inlines_a.h │ │ │ │ ├── arena_inlines_b.h │ │ │ │ ├── arena_stats.h │ │ │ │ ├── arena_structs_a.h │ │ │ │ ├── arena_structs_b.h │ │ │ │ ├── arena_types.h │ │ │ │ ├── assert.h │ │ │ │ ├── atomic.h │ │ │ │ ├── atomic_c11.h │ │ │ │ ├── atomic_gcc_atomic.h │ │ │ │ ├── atomic_gcc_sync.h │ │ │ │ ├── atomic_msvc.h │ │ │ │ ├── background_thread_externs.h │ │ │ │ ├── background_thread_inlines.h │ │ │ │ ├── background_thread_structs.h │ │ │ │ ├── base_externs.h │ │ │ │ ├── base_inlines.h │ │ │ │ ├── base_structs.h │ │ │ │ ├── base_types.h │ │ │ │ ├── bin.h │ │ │ │ ├── bin_stats.h │ │ │ │ ├── bin_types.h │ │ │ │ ├── bit_util.h │ │ │ │ ├── bitmap.h │ │ │ │ ├── cache_bin.h │ │ │ │ ├── ckh.h │ │ │ │ ├── ctl.h │ │ │ │ ├── div.h │ │ │ │ ├── emitter.h │ │ │ │ ├── extent_dss.h │ │ │ │ ├── extent_externs.h │ │ │ │ ├── extent_inlines.h │ │ │ │ ├── extent_mmap.h │ │ │ │ ├── extent_structs.h │ │ │ │ ├── extent_types.h │ │ │ │ ├── hash.h │ │ │ │ ├── hook.h │ │ │ │ ├── jemalloc_internal_decls.h │ │ │ │ ├── jemalloc_internal_defs.h.in │ │ │ │ ├── jemalloc_internal_externs.h │ │ │ │ ├── jemalloc_internal_includes.h │ │ │ │ ├── jemalloc_internal_inlines_a.h │ │ │ │ ├── jemalloc_internal_inlines_b.h │ │ │ │ ├── jemalloc_internal_inlines_c.h │ │ │ │ ├── jemalloc_internal_macros.h │ │ │ │ ├── jemalloc_internal_types.h │ │ │ │ ├── jemalloc_preamble.h.in │ │ │ │ ├── large_externs.h │ │ │ │ ├── log.h │ │ │ │ ├── malloc_io.h │ │ │ │ ├── mutex.h │ │ │ │ ├── mutex_pool.h │ │ │ │ ├── mutex_prof.h │ │ │ │ ├── nstime.h │ │ │ │ ├── pages.h │ │ │ │ ├── ph.h │ │ │ │ ├── private_namespace.sh │ │ │ │ ├── private_symbols.sh │ │ │ │ ├── prng.h │ │ │ │ ├── prof_externs.h │ │ │ │ ├── prof_inlines_a.h │ │ │ │ ├── prof_inlines_b.h │ │ │ │ ├── prof_structs.h │ │ │ │ ├── prof_types.h │ │ │ │ ├── public_namespace.sh │ │ │ │ ├── public_unnamespace.sh │ │ │ │ ├── ql.h │ │ │ │ ├── qr.h │ │ │ │ ├── quantum.h │ │ │ │ ├── rb.h │ │ │ │ ├── rtree.h │ │ │ │ ├── rtree_tsd.h │ │ │ │ ├── safety_check.h │ │ │ │ ├── sc.h │ │ │ │ ├── seq.h │ │ │ │ ├── smoothstep.h │ │ │ │ ├── smoothstep.sh │ │ │ │ ├── spin.h │ │ │ │ ├── stats.h │ │ │ │ ├── sz.h │ │ │ │ ├── tcache_externs.h │ │ │ │ ├── tcache_inlines.h │ │ │ │ ├── tcache_structs.h │ │ │ │ ├── tcache_types.h │ │ │ │ ├── test_hooks.h │ │ │ │ ├── ticker.h │ │ │ │ ├── tsd.h │ │ │ │ ├── tsd_generic.h │ │ │ │ ├── tsd_malloc_thread_cleanup.h │ │ │ │ ├── tsd_tls.h │ │ │ │ ├── tsd_types.h │ │ │ │ ├── tsd_win.h │ │ │ │ ├── util.h │ │ │ │ └── witness.h │ │ │ ├── jemalloc.sh │ │ │ ├── jemalloc_defs.h.in │ │ │ ├── jemalloc_macros.h.in │ │ │ ├── jemalloc_mangle.sh │ │ │ ├── jemalloc_protos.h.in │ │ │ ├── jemalloc_rename.sh │ │ │ └── jemalloc_typedefs.h.in │ │ └── msvc_compat │ │ │ ├── C99 │ │ │ ├── stdbool.h │ │ │ └── stdint.h │ │ │ ├── strings.h │ │ │ └── windows_extra.h │ ├── jemalloc.pc.in │ ├── m4 │ │ └── ax_cxx_compile_stdcxx.m4 │ ├── msvc │ │ ├── ReadMe.txt │ │ ├── jemalloc_vc2015.sln │ │ ├── jemalloc_vc2017.sln │ │ ├── projects │ │ │ ├── vc2015 │ │ │ │ ├── jemalloc │ │ │ │ │ ├── jemalloc.vcxproj │ │ │ │ │ └── jemalloc.vcxproj.filters │ │ │ │ └── test_threads │ │ │ │ │ ├── test_threads.vcxproj │ │ │ │ │ └── test_threads.vcxproj.filters │ │ │ └── vc2017 │ │ │ │ ├── jemalloc │ │ │ │ ├── jemalloc.vcxproj │ │ │ │ └── jemalloc.vcxproj.filters │ │ │ │ └── test_threads │ │ │ │ ├── test_threads.vcxproj │ │ │ │ └── test_threads.vcxproj.filters │ │ └── test_threads │ │ │ ├── test_threads.cpp │ │ │ ├── test_threads.h │ │ │ └── test_threads_main.cpp │ ├── run_tests.sh │ ├── scripts │ │ ├── gen_run_tests.py │ │ └── gen_travis.py │ ├── src │ │ ├── arena.c │ │ ├── background_thread.c │ │ ├── base.c │ │ ├── bin.c │ │ ├── bitmap.c │ │ ├── ckh.c │ │ ├── ctl.c │ │ ├── div.c │ │ ├── extent.c │ │ ├── extent_dss.c │ │ ├── extent_mmap.c │ │ ├── hash.c │ │ ├── hook.c │ │ ├── jemalloc.c │ │ ├── jemalloc_cpp.cpp │ │ ├── large.c │ │ ├── log.c │ │ ├── malloc_io.c │ │ ├── mutex.c │ │ ├── mutex_pool.c │ │ ├── nstime.c │ │ ├── pages.c │ │ ├── prng.c │ │ ├── prof.c │ │ ├── rtree.c │ │ ├── safety_check.c │ │ ├── sc.c │ │ ├── stats.c │ │ ├── sz.c │ │ ├── tcache.c │ │ ├── test_hooks.c │ │ ├── ticker.c │ │ ├── tsd.c │ │ ├── witness.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 │ │ │ ├── btalloc.h │ │ │ ├── extent_hooks.h │ │ │ ├── jemalloc_test.h.in │ │ │ ├── jemalloc_test_defs.h.in │ │ │ ├── math.h │ │ │ ├── mq.h │ │ │ ├── mtx.h │ │ │ ├── test.h │ │ │ ├── thd.h │ │ │ └── timer.h │ │ ├── integration │ │ ├── MALLOCX_ARENA.c │ │ ├── aligned_alloc.c │ │ ├── allocated.c │ │ ├── cpp │ │ │ └── basic.cpp │ │ ├── extent.c │ │ ├── extent.sh │ │ ├── malloc.c │ │ ├── mallocx.c │ │ ├── mallocx.sh │ │ ├── overflow.c │ │ ├── posix_memalign.c │ │ ├── rallocx.c │ │ ├── sdallocx.c │ │ ├── slab_sizes.c │ │ ├── slab_sizes.sh │ │ ├── smallocx.c │ │ ├── smallocx.sh │ │ ├── thread_arena.c │ │ ├── thread_tcache_enabled.c │ │ ├── xallocx.c │ │ └── xallocx.sh │ │ ├── src │ │ ├── SFMT.c │ │ ├── btalloc.c │ │ ├── btalloc_0.c │ │ ├── btalloc_1.c │ │ ├── math.c │ │ ├── mq.c │ │ ├── mtx.c │ │ ├── test.c │ │ ├── thd.c │ │ └── timer.c │ │ ├── stress │ │ ├── hookbench.c │ │ └── microbench.c │ │ ├── test.sh.in │ │ └── unit │ │ ├── SFMT.c │ │ ├── a0.c │ │ ├── arena_reset.c │ │ ├── arena_reset_prof.c │ │ ├── arena_reset_prof.sh │ │ ├── atomic.c │ │ ├── background_thread.c │ │ ├── background_thread_enable.c │ │ ├── base.c │ │ ├── binshard.c │ │ ├── binshard.sh │ │ ├── bit_util.c │ │ ├── bitmap.c │ │ ├── ckh.c │ │ ├── decay.c │ │ ├── decay.sh │ │ ├── div.c │ │ ├── emitter.c │ │ ├── extent_quantize.c │ │ ├── extent_util.c │ │ ├── fork.c │ │ ├── hash.c │ │ ├── hook.c │ │ ├── huge.c │ │ ├── junk.c │ │ ├── junk.sh │ │ ├── junk_alloc.c │ │ ├── junk_alloc.sh │ │ ├── junk_free.c │ │ ├── junk_free.sh │ │ ├── log.c │ │ ├── mallctl.c │ │ ├── malloc_io.c │ │ ├── math.c │ │ ├── mq.c │ │ ├── mtx.c │ │ ├── nstime.c │ │ ├── pack.c │ │ ├── pack.sh │ │ ├── pages.c │ │ ├── ph.c │ │ ├── prng.c │ │ ├── prof_accum.c │ │ ├── prof_accum.sh │ │ ├── prof_active.c │ │ ├── prof_active.sh │ │ ├── prof_gdump.c │ │ ├── prof_gdump.sh │ │ ├── prof_idump.c │ │ ├── prof_idump.sh │ │ ├── prof_log.c │ │ ├── prof_log.sh │ │ ├── prof_reset.c │ │ ├── prof_reset.sh │ │ ├── prof_tctx.c │ │ ├── prof_tctx.sh │ │ ├── prof_thread_name.c │ │ ├── prof_thread_name.sh │ │ ├── ql.c │ │ ├── qr.c │ │ ├── rb.c │ │ ├── retained.c │ │ ├── rtree.c │ │ ├── safety_check.c │ │ ├── safety_check.sh │ │ ├── sc.c │ │ ├── seq.c │ │ ├── size_classes.c │ │ ├── slab.c │ │ ├── smoothstep.c │ │ ├── spin.c │ │ ├── stats.c │ │ ├── stats_print.c │ │ ├── test_hooks.c │ │ ├── ticker.c │ │ ├── tsd.c │ │ ├── witness.c │ │ ├── zero.c │ │ └── zero.sh ├── 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 ├── redis.conf ├── runtest ├── runtest-cluster ├── runtest-moduleapi ├── runtest-sentinel ├── sentinel.conf ├── src ├── .gitignore ├── Makefile ├── acl.c ├── 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 ├── atomicvar.h ├── bio.c ├── bio.h ├── bitops.c ├── blocked.c ├── call_reply.c ├── call_reply.h ├── childinfo.c ├── cli_common.c ├── cli_common.h ├── cluster.c ├── cluster.h ├── commands.c ├── commands │ ├── acl-cat.json │ ├── acl-deluser.json │ ├── acl-dryrun.json │ ├── acl-genpass.json │ ├── acl-getuser.json │ ├── acl-help.json │ ├── acl-list.json │ ├── acl-load.json │ ├── acl-log.json │ ├── acl-save.json │ ├── acl-setuser.json │ ├── acl-users.json │ ├── acl-whoami.json │ ├── acl.json │ ├── append.json │ ├── asking.json │ ├── auth.json │ ├── bgrewriteaof.json │ ├── bgsave.json │ ├── bitcount.json │ ├── bitfield.json │ ├── bitfield_ro.json │ ├── bitop.json │ ├── bitpos.json │ ├── blmove.json │ ├── blmpop.json │ ├── blpop.json │ ├── brpop.json │ ├── brpoplpush.json │ ├── bzmpop.json │ ├── bzpopmax.json │ ├── bzpopmin.json │ ├── client-caching.json │ ├── client-getname.json │ ├── client-getredir.json │ ├── client-help.json │ ├── client-id.json │ ├── client-info.json │ ├── client-kill.json │ ├── client-list.json │ ├── client-no-evict.json │ ├── client-pause.json │ ├── client-reply.json │ ├── client-setname.json │ ├── client-tracking.json │ ├── client-trackinginfo.json │ ├── client-unblock.json │ ├── client-unpause.json │ ├── client.json │ ├── cluster-addslots.json │ ├── cluster-addslotsrange.json │ ├── cluster-bumpepoch.json │ ├── cluster-count-failure-reports.json │ ├── cluster-countkeysinslot.json │ ├── cluster-delslots.json │ ├── cluster-delslotsrange.json │ ├── cluster-failover.json │ ├── cluster-flushslots.json │ ├── cluster-forget.json │ ├── cluster-getkeysinslot.json │ ├── cluster-help.json │ ├── cluster-info.json │ ├── cluster-keyslot.json │ ├── cluster-links.json │ ├── cluster-meet.json │ ├── cluster-myid.json │ ├── cluster-nodes.json │ ├── cluster-replicas.json │ ├── cluster-replicate.json │ ├── cluster-reset.json │ ├── cluster-saveconfig.json │ ├── cluster-set-config-epoch.json │ ├── cluster-setslot.json │ ├── cluster-shards.json │ ├── cluster-slaves.json │ ├── cluster-slots.json │ ├── cluster.json │ ├── command-count.json │ ├── command-docs.json │ ├── command-getkeys.json │ ├── command-getkeysandflags.json │ ├── command-help.json │ ├── command-info.json │ ├── command-list.json │ ├── command.json │ ├── config-get.json │ ├── config-help.json │ ├── config-resetstat.json │ ├── config-rewrite.json │ ├── config-set.json │ ├── config.json │ ├── copy.json │ ├── dbsize.json │ ├── debug.json │ ├── decr.json │ ├── decrby.json │ ├── del.json │ ├── discard.json │ ├── dump.json │ ├── echo.json │ ├── eval.json │ ├── eval_ro.json │ ├── evalsha.json │ ├── evalsha_ro.json │ ├── exec.json │ ├── exists.json │ ├── expire.json │ ├── expireat.json │ ├── expiretime.json │ ├── failover.json │ ├── fcall.json │ ├── fcall_ro.json │ ├── flushall.json │ ├── flushdb.json │ ├── function-delete.json │ ├── function-dump.json │ ├── function-flush.json │ ├── function-help.json │ ├── function-kill.json │ ├── function-list.json │ ├── function-load.json │ ├── function-restore.json │ ├── function-stats.json │ ├── function.json │ ├── geoadd.json │ ├── geodist.json │ ├── geohash.json │ ├── geopos.json │ ├── georadius.json │ ├── georadius_ro.json │ ├── georadiusbymember.json │ ├── georadiusbymember_ro.json │ ├── geosearch.json │ ├── geosearchstore.json │ ├── get.json │ ├── getbit.json │ ├── getdel.json │ ├── getex.json │ ├── getrange.json │ ├── getset.json │ ├── hdel.json │ ├── hello.json │ ├── hexists.json │ ├── hget.json │ ├── hgetall.json │ ├── hincrby.json │ ├── hincrbyfloat.json │ ├── hkeys.json │ ├── hlen.json │ ├── hmget.json │ ├── hmset.json │ ├── hrandfield.json │ ├── hscan.json │ ├── hset.json │ ├── hsetnx.json │ ├── hstrlen.json │ ├── hvals.json │ ├── incr.json │ ├── incrby.json │ ├── incrbyfloat.json │ ├── info.json │ ├── keys.json │ ├── lastsave.json │ ├── latency-doctor.json │ ├── latency-graph.json │ ├── latency-help.json │ ├── latency-histogram.json │ ├── latency-history.json │ ├── latency-latest.json │ ├── latency-reset.json │ ├── latency.json │ ├── lcs.json │ ├── lindex.json │ ├── linsert.json │ ├── llen.json │ ├── lmove.json │ ├── lmpop.json │ ├── lolwut.json │ ├── lpop.json │ ├── lpos.json │ ├── lpush.json │ ├── lpushx.json │ ├── lrange.json │ ├── lrem.json │ ├── lset.json │ ├── ltrim.json │ ├── memory-doctor.json │ ├── memory-help.json │ ├── memory-malloc-stats.json │ ├── memory-purge.json │ ├── memory-stats.json │ ├── memory-usage.json │ ├── memory.json │ ├── mget.json │ ├── migrate.json │ ├── module-help.json │ ├── module-list.json │ ├── module-load.json │ ├── module-loadex.json │ ├── module-unload.json │ ├── module.json │ ├── monitor.json │ ├── move.json │ ├── mset.json │ ├── msetnx.json │ ├── multi.json │ ├── object-encoding.json │ ├── object-freq.json │ ├── object-help.json │ ├── object-idletime.json │ ├── object-refcount.json │ ├── object.json │ ├── persist.json │ ├── pexpire.json │ ├── pexpireat.json │ ├── pexpiretime.json │ ├── pfadd.json │ ├── pfcount.json │ ├── pfdebug.json │ ├── pfmerge.json │ ├── pfselftest.json │ ├── ping.json │ ├── psetex.json │ ├── psubscribe.json │ ├── psync.json │ ├── pttl.json │ ├── publish.json │ ├── pubsub-channels.json │ ├── pubsub-help.json │ ├── pubsub-numpat.json │ ├── pubsub-numsub.json │ ├── pubsub-shardchannels.json │ ├── pubsub-shardnumsub.json │ ├── pubsub.json │ ├── punsubscribe.json │ ├── quit.json │ ├── randomkey.json │ ├── readonly.json │ ├── readwrite.json │ ├── rename.json │ ├── renamenx.json │ ├── replconf.json │ ├── replicaof.json │ ├── reset.json │ ├── restore-asking.json │ ├── restore.json │ ├── role.json │ ├── rpop.json │ ├── rpoplpush.json │ ├── rpush.json │ ├── rpushx.json │ ├── sadd.json │ ├── save.json │ ├── scan.json │ ├── scard.json │ ├── script-debug.json │ ├── script-exists.json │ ├── script-flush.json │ ├── script-help.json │ ├── script-kill.json │ ├── script-load.json │ ├── script.json │ ├── sdiff.json │ ├── sdiffstore.json │ ├── select.json │ ├── sentinel-ckquorum.json │ ├── sentinel-config.json │ ├── sentinel-debug.json │ ├── sentinel-failover.json │ ├── sentinel-flushconfig.json │ ├── sentinel-get-master-addr-by-name.json │ ├── sentinel-help.json │ ├── sentinel-info-cache.json │ ├── sentinel-is-master-down-by-addr.json │ ├── sentinel-master.json │ ├── sentinel-masters.json │ ├── sentinel-monitor.json │ ├── sentinel-myid.json │ ├── sentinel-pending-scripts.json │ ├── sentinel-remove.json │ ├── sentinel-replicas.json │ ├── sentinel-reset.json │ ├── sentinel-sentinels.json │ ├── sentinel-set.json │ ├── sentinel-simulate-failure.json │ ├── sentinel-slaves.json │ ├── sentinel.json │ ├── set.json │ ├── setbit.json │ ├── setex.json │ ├── setnx.json │ ├── setrange.json │ ├── shutdown.json │ ├── sinter.json │ ├── sintercard.json │ ├── sinterstore.json │ ├── sismember.json │ ├── slaveof.json │ ├── slowlog-get.json │ ├── slowlog-help.json │ ├── slowlog-len.json │ ├── slowlog-reset.json │ ├── slowlog.json │ ├── smembers.json │ ├── smismember.json │ ├── smove.json │ ├── sort.json │ ├── sort_ro.json │ ├── spop.json │ ├── spublish.json │ ├── srandmember.json │ ├── srem.json │ ├── sscan.json │ ├── ssubscribe.json │ ├── strlen.json │ ├── subscribe.json │ ├── substr.json │ ├── sunion.json │ ├── sunionstore.json │ ├── sunsubscribe.json │ ├── swapdb.json │ ├── sync.json │ ├── time.json │ ├── touch.json │ ├── ttl.json │ ├── type.json │ ├── unlink.json │ ├── unsubscribe.json │ ├── unwatch.json │ ├── wait.json │ ├── watch.json │ ├── xack.json │ ├── xadd.json │ ├── xautoclaim.json │ ├── xclaim.json │ ├── xdel.json │ ├── xgroup-create.json │ ├── xgroup-createconsumer.json │ ├── xgroup-delconsumer.json │ ├── xgroup-destroy.json │ ├── xgroup-help.json │ ├── xgroup-setid.json │ ├── xgroup.json │ ├── xinfo-consumers.json │ ├── xinfo-groups.json │ ├── xinfo-help.json │ ├── xinfo-stream.json │ ├── xinfo.json │ ├── xlen.json │ ├── xpending.json │ ├── xrange.json │ ├── xread.json │ ├── xreadgroup.json │ ├── xrevrange.json │ ├── xsetid.json │ ├── xtrim.json │ ├── zadd.json │ ├── zcard.json │ ├── zcount.json │ ├── zdiff.json │ ├── zdiffstore.json │ ├── zincrby.json │ ├── zinter.json │ ├── zintercard.json │ ├── zinterstore.json │ ├── zlexcount.json │ ├── zmpop.json │ ├── zmscore.json │ ├── zpopmax.json │ ├── zpopmin.json │ ├── zrandmember.json │ ├── zrange.json │ ├── zrangebylex.json │ ├── zrangebyscore.json │ ├── zrangestore.json │ ├── zrank.json │ ├── zrem.json │ ├── zremrangebylex.json │ ├── zremrangebyrank.json │ ├── zremrangebyscore.json │ ├── zrevrange.json │ ├── zrevrangebylex.json │ ├── zrevrangebyscore.json │ ├── zrevrank.json │ ├── zscan.json │ ├── zscore.json │ ├── zunion.json │ └── zunionstore.json ├── config.c ├── config.h ├── connection.c ├── connection.h ├── connhelpers.h ├── crc16.c ├── crc16_slottable.h ├── crc64.c ├── crc64.h ├── crcspeed.c ├── crcspeed.h ├── db.c ├── debug.c ├── debugmacro.h ├── defrag.c ├── dict.c ├── dict.h ├── endianconv.c ├── endianconv.h ├── eval.c ├── evict.c ├── expire.c ├── fmacros.h ├── function_lua.c ├── functions.c ├── functions.h ├── geo.c ├── geo.h ├── geohash.c ├── geohash.h ├── geohash_helper.c ├── geohash_helper.h ├── help.h ├── hyperloglog.c ├── intset.c ├── intset.h ├── latency.c ├── latency.h ├── lazyfree.c ├── listpack.c ├── listpack.h ├── listpack_malloc.h ├── localtime.c ├── lolwut.c ├── lolwut.h ├── lolwut5.c ├── lolwut6.c ├── lzf.h ├── lzfP.h ├── lzf_c.c ├── lzf_d.c ├── memtest.c ├── mkreleasehdr.sh ├── module.c ├── modules │ ├── .gitignore │ ├── Makefile │ ├── helloacl.c │ ├── helloblock.c │ ├── hellocluster.c │ ├── hellodict.c │ ├── hellohook.c │ ├── hellotimer.c │ ├── hellotype.c │ └── helloworld.c ├── monotonic.c ├── monotonic.h ├── mt19937-64.c ├── mt19937-64.h ├── multi.c ├── networking.c ├── notify.c ├── object.c ├── pqsort.c ├── pqsort.h ├── pubsub.c ├── quicklist.c ├── quicklist.h ├── rand.c ├── rand.h ├── rax.c ├── rax.h ├── rax_malloc.h ├── rdb.c ├── rdb.h ├── redis-benchmark.c ├── redis-check-aof.c ├── redis-check-rdb.c ├── redis-cli.c ├── redis-trib.rb ├── redisassert.c ├── redisassert.h ├── redismodule.h ├── release.c ├── replication.c ├── resp_parser.c ├── resp_parser.h ├── rio.c ├── rio.h ├── script.c ├── script.h ├── script_lua.c ├── script_lua.h ├── sds.c ├── sds.h ├── sdsalloc.h ├── sentinel.c ├── server.c ├── server.h ├── setcpuaffinity.c ├── setproctitle.c ├── sha1.c ├── sha1.h ├── sha256.c ├── sha256.h ├── siphash.c ├── slowlog.c ├── slowlog.h ├── socket.c ├── solarisfixes.h ├── sort.c ├── sparkline.c ├── sparkline.h ├── stream.h ├── strl.c ├── syncio.c ├── syscheck.c ├── syscheck.h ├── t_hash.c ├── t_list.c ├── t_set.c ├── t_stream.c ├── t_string.c ├── t_zset.c ├── testhelp.h ├── timeout.c ├── tls.c ├── tracking.c ├── unix.c ├── util.c ├── util.h ├── valgrind.sup ├── version.h ├── ziplist.c ├── ziplist.h ├── zipmap.c ├── zipmap.h ├── zmalloc.c └── zmalloc.h ├── tests ├── README.md ├── assets │ ├── corrupt_empty_keys.rdb │ ├── corrupt_ziplist.rdb │ ├── default.conf │ ├── encodings.rdb │ ├── hash-ziplist.rdb │ ├── hash-zipmap.rdb │ ├── list-quicklist.rdb │ ├── minimal.conf │ ├── nodefaultuser.acl │ ├── rdb-preamble.aof │ ├── scriptbackup.rdb │ ├── user.acl │ ├── userwithselectors.acl │ └── zset-ziplist.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 │ │ ├── 12-replica-migration-2.tcl │ │ ├── 12.1-replica-migration-3.tcl │ │ ├── 13-no-failover-option.tcl │ │ ├── 14-consistency-check.tcl │ │ ├── 15-cluster-slots.tcl │ │ ├── 16-transactions-on-replica.tcl │ │ ├── 17-diskless-load-swapdb.tcl │ │ ├── 18-info.tcl │ │ ├── 19-cluster-nodes-slots.tcl │ │ ├── 20-half-migrated-slot.tcl │ │ ├── 21-many-slot-migration.tcl │ │ ├── 22-replica-in-sync.tcl │ │ ├── 25-pubsubshard-slot-migration.tcl │ │ ├── 26-pubsubshard.tcl │ │ ├── 28-cluster-shards.tcl │ │ ├── 29-slot-migration-response.tcl │ │ ├── helpers │ │ │ └── onlydots.tcl │ │ └── includes │ │ │ ├── init-tests.tcl │ │ │ └── utils.tcl │ └── tmp │ │ └── .gitignore ├── helpers │ ├── bg_block_op.tcl │ ├── bg_complex_data.tcl │ ├── fake_redis_node.tcl │ └── gen_write_load.tcl ├── instances.tcl ├── integration │ ├── aof-multi-part.tcl │ ├── aof-race.tcl │ ├── aof.tcl │ ├── block-repl.tcl │ ├── convert-ziplist-hash-on-load.tcl │ ├── convert-ziplist-zset-on-load.tcl │ ├── convert-zipmap-hash-on-load.tcl │ ├── corrupt-dump-fuzzer.tcl │ ├── corrupt-dump.tcl │ ├── dismiss-mem.tcl │ ├── failover.tcl │ ├── logging.tcl │ ├── psync2-master-restart.tcl │ ├── psync2-pingoff.tcl │ ├── psync2-reg.tcl │ ├── psync2.tcl │ ├── rdb.tcl │ ├── redis-benchmark.tcl │ ├── redis-cli.tcl │ ├── replication-2.tcl │ ├── replication-3.tcl │ ├── replication-4.tcl │ ├── replication-buffer.tcl │ ├── replication-psync.tcl │ ├── replication.tcl │ └── shutdown.tcl ├── modules │ ├── Makefile │ ├── aclcheck.c │ ├── auth.c │ ├── basics.c │ ├── blockedclient.c │ ├── blockonbackground.c │ ├── blockonkeys.c │ ├── cmdintrospection.c │ ├── commandfilter.c │ ├── datatype.c │ ├── datatype2.c │ ├── defragtest.c │ ├── eventloop.c │ ├── fork.c │ ├── getchannels.c │ ├── getkeys.c │ ├── hash.c │ ├── hooks.c │ ├── infotest.c │ ├── keyspace_events.c │ ├── keyspecs.c │ ├── list.c │ ├── mallocsize.c │ ├── misc.c │ ├── moduleconfigs.c │ ├── moduleconfigstwo.c │ ├── propagate.c │ ├── publish.c │ ├── reply.c │ ├── scan.c │ ├── stream.c │ ├── subcommands.c │ ├── test_lazyfree.c │ ├── testrdb.c │ ├── timer.c │ ├── usercall.c │ └── zset.c ├── 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 │ │ ├── 07-down-conditions.tcl │ │ ├── 08-hostname-conf.tcl │ │ ├── 09-acl-support.tcl │ │ ├── 10-replica-priority.tcl │ │ ├── 11-port-0.tcl │ │ ├── 12-master-reboot.tcl │ │ ├── 13-info-command.tcl │ │ ├── helpers │ │ │ └── check_leaked_fds.tcl │ │ └── includes │ │ │ ├── init-tests.tcl │ │ │ ├── sentinel.conf │ │ │ ├── start-init-tests.tcl │ │ │ └── utils.tcl │ └── tmp │ │ └── .gitignore ├── support │ ├── aofmanifest.tcl │ ├── benchmark.tcl │ ├── cli.tcl │ ├── cluster.tcl │ ├── cluster_util.tcl │ ├── redis.tcl │ ├── server.tcl │ ├── test.tcl │ ├── tmpfile.tcl │ └── util.tcl ├── test_helper.tcl ├── tmp │ └── .gitignore └── unit │ ├── acl-v2.tcl │ ├── acl.tcl │ ├── aofrw.tcl │ ├── auth.tcl │ ├── bitfield.tcl │ ├── bitops.tcl │ ├── client-eviction.tcl │ ├── cluster │ ├── cli.tcl │ ├── hostnames.tcl │ ├── links.tcl │ ├── misc.tcl │ ├── multi-slot-operations.tcl │ ├── scripting.tcl │ └── slot-ownership.tcl │ ├── dump.tcl │ ├── expire.tcl │ ├── functions.tcl │ ├── geo.tcl │ ├── hyperloglog.tcl │ ├── info-command.tcl │ ├── info.tcl │ ├── introspection-2.tcl │ ├── introspection.tcl │ ├── keyspace.tcl │ ├── latency-monitor.tcl │ ├── lazyfree.tcl │ ├── limits.tcl │ ├── maxmemory.tcl │ ├── memefficiency.tcl │ ├── moduleapi │ ├── aclcheck.tcl │ ├── auth.tcl │ ├── basics.tcl │ ├── blockedclient.tcl │ ├── blockonbackground.tcl │ ├── blockonkeys.tcl │ ├── cluster.tcl │ ├── cmdintrospection.tcl │ ├── commandfilter.tcl │ ├── datatype.tcl │ ├── datatype2.tcl │ ├── defrag.tcl │ ├── eventloop.tcl │ ├── fork.tcl │ ├── getchannels.tcl │ ├── getkeys.tcl │ ├── hash.tcl │ ├── hooks.tcl │ ├── infotest.tcl │ ├── infra.tcl │ ├── keyspace_events.tcl │ ├── keyspecs.tcl │ ├── list.tcl │ ├── mallocsize.tcl │ ├── misc.tcl │ ├── moduleconfigs.tcl │ ├── propagate.tcl │ ├── publish.tcl │ ├── reply.tcl │ ├── scan.tcl │ ├── stream.tcl │ ├── subcommands.tcl │ ├── test_lazyfree.tcl │ ├── testrdb.tcl │ ├── timer.tcl │ ├── usercall.tcl │ └── zset.tcl │ ├── multi.tcl │ ├── networking.tcl │ ├── obuf-limits.tcl │ ├── oom-score-adj.tcl │ ├── other.tcl │ ├── pause.tcl │ ├── printver.tcl │ ├── protocol.tcl │ ├── pubsub.tcl │ ├── pubsubshard.tcl │ ├── querybuf.tcl │ ├── quit.tcl │ ├── replybufsize.tcl │ ├── scan.tcl │ ├── scripting.tcl │ ├── shutdown.tcl │ ├── slowlog.tcl │ ├── sort.tcl │ ├── tls.tcl │ ├── tracking.tcl │ ├── type │ ├── hash.tcl │ ├── incr.tcl │ ├── list-2.tcl │ ├── list-3.tcl │ ├── list-common.tcl │ ├── list.tcl │ ├── set.tcl │ ├── stream-cgroups.tcl │ ├── stream.tcl │ ├── string.tcl │ └── zset.tcl │ ├── violations.tcl │ └── wait.tcl └── utils ├── build-static-symbols.tcl ├── cluster_fail_time.tcl ├── corrupt_rdb.c ├── create-cluster ├── .gitignore ├── README └── create-cluster ├── gen-test-certs.sh ├── generate-command-code.py ├── generate-command-help.rb ├── generate-commands-json.py ├── generate-module-api-doc.rb ├── graphs └── commits-over-time │ ├── README.md │ └── genhtml.tcl ├── hyperloglog ├── .gitignore ├── hll-err.rb └── hll-gnuplot-graph.rb ├── install_server.sh ├── lru ├── README ├── lfu-simulation.c └── 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 └── changelog.tcl ├── speed-regression.tcl ├── srandmember ├── README.md ├── showdist.rb └── showfreq.rb ├── systemd-redis_multiple_servers@.service ├── systemd-redis_server.service ├── tracking_collisions.c └── whatisdoing.sh /.codespell/.codespellrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/.codespell/.codespellrc -------------------------------------------------------------------------------- /.codespell/requirements.txt: -------------------------------------------------------------------------------- 1 | codespell==2.2.4 2 | -------------------------------------------------------------------------------- /.codespell/wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/.codespell/wordlist.txt -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/daily.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/.github/workflows/daily.yml -------------------------------------------------------------------------------- /.github/workflows/external.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/.github/workflows/external.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/.gitignore -------------------------------------------------------------------------------- /00-RELEASENOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/00-RELEASENOTES -------------------------------------------------------------------------------- /BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/BUGS -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/COPYING -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- 1 | See README 2 | -------------------------------------------------------------------------------- /MANIFESTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/MANIFESTO -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/SECURITY.md -------------------------------------------------------------------------------- /TLS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/TLS.md -------------------------------------------------------------------------------- /deps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/Makefile -------------------------------------------------------------------------------- /deps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/README.md -------------------------------------------------------------------------------- /deps/fpconv/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/fpconv/LICENSE.txt -------------------------------------------------------------------------------- /deps/fpconv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/fpconv/Makefile -------------------------------------------------------------------------------- /deps/fpconv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/fpconv/README.md -------------------------------------------------------------------------------- /deps/fpconv/fpconv_dtoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/fpconv/fpconv_dtoa.c -------------------------------------------------------------------------------- /deps/fpconv/fpconv_dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/fpconv/fpconv_dtoa.h -------------------------------------------------------------------------------- /deps/fpconv/fpconv_powers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/fpconv/fpconv_powers.h -------------------------------------------------------------------------------- /deps/hdr_histogram/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hdr_histogram/COPYING.txt -------------------------------------------------------------------------------- /deps/hdr_histogram/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hdr_histogram/LICENSE.txt -------------------------------------------------------------------------------- /deps/hdr_histogram/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hdr_histogram/Makefile -------------------------------------------------------------------------------- /deps/hdr_histogram/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hdr_histogram/README.md -------------------------------------------------------------------------------- /deps/hdr_histogram/hdr_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hdr_histogram/hdr_atomic.h -------------------------------------------------------------------------------- /deps/hdr_histogram/hdr_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hdr_histogram/hdr_tests.h -------------------------------------------------------------------------------- /deps/hiredis/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hiredis/.gitignore -------------------------------------------------------------------------------- /deps/hiredis/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hiredis/.travis.yml -------------------------------------------------------------------------------- /deps/hiredis/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hiredis/CHANGELOG.md -------------------------------------------------------------------------------- /deps/hiredis/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hiredis/CMakeLists.txt -------------------------------------------------------------------------------- /deps/hiredis/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hiredis/COPYING -------------------------------------------------------------------------------- /deps/hiredis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hiredis/Makefile -------------------------------------------------------------------------------- /deps/hiredis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hiredis/README.md -------------------------------------------------------------------------------- /deps/hiredis/adapters/ae.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hiredis/adapters/ae.h -------------------------------------------------------------------------------- /deps/hiredis/adapters/glib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hiredis/adapters/glib.h -------------------------------------------------------------------------------- /deps/hiredis/adapters/ivykis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hiredis/adapters/ivykis.h -------------------------------------------------------------------------------- /deps/hiredis/adapters/libev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hiredis/adapters/libev.h -------------------------------------------------------------------------------- /deps/hiredis/adapters/libevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hiredis/adapters/libevent.h -------------------------------------------------------------------------------- /deps/hiredis/adapters/libuv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hiredis/adapters/libuv.h -------------------------------------------------------------------------------- /deps/hiredis/adapters/macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hiredis/adapters/macosx.h -------------------------------------------------------------------------------- /deps/hiredis/adapters/qt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hiredis/adapters/qt.h -------------------------------------------------------------------------------- /deps/hiredis/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hiredis/alloc.c -------------------------------------------------------------------------------- /deps/hiredis/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hiredis/alloc.h -------------------------------------------------------------------------------- /deps/hiredis/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hiredis/appveyor.yml -------------------------------------------------------------------------------- /deps/hiredis/async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hiredis/async.c -------------------------------------------------------------------------------- /deps/hiredis/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hiredis/async.h -------------------------------------------------------------------------------- /deps/hiredis/async_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hiredis/async_private.h -------------------------------------------------------------------------------- /deps/hiredis/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hiredis/dict.c -------------------------------------------------------------------------------- /deps/hiredis/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hiredis/dict.h -------------------------------------------------------------------------------- /deps/hiredis/examples/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hiredis/examples/example.c -------------------------------------------------------------------------------- /deps/hiredis/fmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hiredis/fmacros.h -------------------------------------------------------------------------------- /deps/hiredis/hiredis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hiredis/hiredis.c -------------------------------------------------------------------------------- /deps/hiredis/hiredis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hiredis/hiredis.h -------------------------------------------------------------------------------- /deps/hiredis/hiredis.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hiredis/hiredis.pc.in -------------------------------------------------------------------------------- /deps/hiredis/hiredis.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hiredis/hiredis.targets -------------------------------------------------------------------------------- /deps/hiredis/hiredis_ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hiredis/hiredis_ssl.h -------------------------------------------------------------------------------- /deps/hiredis/hiredis_ssl.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hiredis/hiredis_ssl.pc.in -------------------------------------------------------------------------------- /deps/hiredis/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hiredis/net.c -------------------------------------------------------------------------------- /deps/hiredis/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hiredis/net.h -------------------------------------------------------------------------------- /deps/hiredis/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hiredis/read.c -------------------------------------------------------------------------------- /deps/hiredis/read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hiredis/read.h -------------------------------------------------------------------------------- /deps/hiredis/sds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hiredis/sds.c -------------------------------------------------------------------------------- /deps/hiredis/sds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hiredis/sds.h -------------------------------------------------------------------------------- /deps/hiredis/sdsalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hiredis/sdsalloc.h -------------------------------------------------------------------------------- /deps/hiredis/sdscompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hiredis/sdscompat.h -------------------------------------------------------------------------------- /deps/hiredis/sockcompat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hiredis/sockcompat.c -------------------------------------------------------------------------------- /deps/hiredis/sockcompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hiredis/sockcompat.h -------------------------------------------------------------------------------- /deps/hiredis/ssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hiredis/ssl.c -------------------------------------------------------------------------------- /deps/hiredis/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hiredis/test.c -------------------------------------------------------------------------------- /deps/hiredis/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hiredis/test.sh -------------------------------------------------------------------------------- /deps/hiredis/win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/hiredis/win32.h -------------------------------------------------------------------------------- /deps/jemalloc/.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/.appveyor.yml -------------------------------------------------------------------------------- /deps/jemalloc/.autom4te.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/.autom4te.cfg -------------------------------------------------------------------------------- /deps/jemalloc/.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/.cirrus.yml -------------------------------------------------------------------------------- /deps/jemalloc/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /deps/jemalloc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/.gitignore -------------------------------------------------------------------------------- /deps/jemalloc/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/.travis.yml -------------------------------------------------------------------------------- /deps/jemalloc/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/COPYING -------------------------------------------------------------------------------- /deps/jemalloc/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/ChangeLog -------------------------------------------------------------------------------- /deps/jemalloc/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/INSTALL.md -------------------------------------------------------------------------------- /deps/jemalloc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/Makefile.in -------------------------------------------------------------------------------- /deps/jemalloc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/README -------------------------------------------------------------------------------- /deps/jemalloc/TUNING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/TUNING.md -------------------------------------------------------------------------------- /deps/jemalloc/VERSION: -------------------------------------------------------------------------------- 1 | 5.2.1-0-g0 2 | -------------------------------------------------------------------------------- /deps/jemalloc/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/autogen.sh -------------------------------------------------------------------------------- /deps/jemalloc/bin/jemalloc.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/bin/jemalloc.sh.in -------------------------------------------------------------------------------- /deps/jemalloc/bin/jeprof.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/bin/jeprof.in -------------------------------------------------------------------------------- /deps/jemalloc/config.stamp.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/jemalloc/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/configure -------------------------------------------------------------------------------- /deps/jemalloc/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/configure.ac -------------------------------------------------------------------------------- /deps/jemalloc/doc/html.xsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/doc/html.xsl.in -------------------------------------------------------------------------------- /deps/jemalloc/doc/stylesheet.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/doc/stylesheet.xsl -------------------------------------------------------------------------------- /deps/jemalloc/jemalloc.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/jemalloc.pc.in -------------------------------------------------------------------------------- /deps/jemalloc/msvc/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/msvc/ReadMe.txt -------------------------------------------------------------------------------- /deps/jemalloc/msvc/test_threads/test_threads.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | int test_threads(); 4 | -------------------------------------------------------------------------------- /deps/jemalloc/run_tests.sh: -------------------------------------------------------------------------------- 1 | $(dirname "$)")/scripts/gen_run_tests.py | bash 2 | -------------------------------------------------------------------------------- /deps/jemalloc/src/arena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/src/arena.c -------------------------------------------------------------------------------- /deps/jemalloc/src/base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/src/base.c -------------------------------------------------------------------------------- /deps/jemalloc/src/bin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/src/bin.c -------------------------------------------------------------------------------- /deps/jemalloc/src/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/src/bitmap.c -------------------------------------------------------------------------------- /deps/jemalloc/src/ckh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/src/ckh.c -------------------------------------------------------------------------------- /deps/jemalloc/src/ctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/src/ctl.c -------------------------------------------------------------------------------- /deps/jemalloc/src/div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/src/div.c -------------------------------------------------------------------------------- /deps/jemalloc/src/extent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/src/extent.c -------------------------------------------------------------------------------- /deps/jemalloc/src/extent_dss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/src/extent_dss.c -------------------------------------------------------------------------------- /deps/jemalloc/src/extent_mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/src/extent_mmap.c -------------------------------------------------------------------------------- /deps/jemalloc/src/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/src/hash.c -------------------------------------------------------------------------------- /deps/jemalloc/src/hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/src/hook.c -------------------------------------------------------------------------------- /deps/jemalloc/src/jemalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/src/jemalloc.c -------------------------------------------------------------------------------- /deps/jemalloc/src/large.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/src/large.c -------------------------------------------------------------------------------- /deps/jemalloc/src/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/src/log.c -------------------------------------------------------------------------------- /deps/jemalloc/src/malloc_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/src/malloc_io.c -------------------------------------------------------------------------------- /deps/jemalloc/src/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/src/mutex.c -------------------------------------------------------------------------------- /deps/jemalloc/src/mutex_pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/src/mutex_pool.c -------------------------------------------------------------------------------- /deps/jemalloc/src/nstime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/src/nstime.c -------------------------------------------------------------------------------- /deps/jemalloc/src/pages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/src/pages.c -------------------------------------------------------------------------------- /deps/jemalloc/src/prng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/src/prng.c -------------------------------------------------------------------------------- /deps/jemalloc/src/prof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/src/prof.c -------------------------------------------------------------------------------- /deps/jemalloc/src/rtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/src/rtree.c -------------------------------------------------------------------------------- /deps/jemalloc/src/safety_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/src/safety_check.c -------------------------------------------------------------------------------- /deps/jemalloc/src/sc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/src/sc.c -------------------------------------------------------------------------------- /deps/jemalloc/src/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/src/stats.c -------------------------------------------------------------------------------- /deps/jemalloc/src/sz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/src/sz.c -------------------------------------------------------------------------------- /deps/jemalloc/src/tcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/src/tcache.c -------------------------------------------------------------------------------- /deps/jemalloc/src/test_hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/src/test_hooks.c -------------------------------------------------------------------------------- /deps/jemalloc/src/ticker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/src/ticker.c -------------------------------------------------------------------------------- /deps/jemalloc/src/tsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/src/tsd.c -------------------------------------------------------------------------------- /deps/jemalloc/src/witness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/src/witness.c -------------------------------------------------------------------------------- /deps/jemalloc/src/zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/src/zone.c -------------------------------------------------------------------------------- /deps/jemalloc/test/src/SFMT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/src/SFMT.c -------------------------------------------------------------------------------- /deps/jemalloc/test/src/btalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/src/btalloc.c -------------------------------------------------------------------------------- /deps/jemalloc/test/src/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/src/math.c -------------------------------------------------------------------------------- /deps/jemalloc/test/src/mq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/src/mq.c -------------------------------------------------------------------------------- /deps/jemalloc/test/src/mtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/src/mtx.c -------------------------------------------------------------------------------- /deps/jemalloc/test/src/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/src/test.c -------------------------------------------------------------------------------- /deps/jemalloc/test/src/thd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/src/thd.c -------------------------------------------------------------------------------- /deps/jemalloc/test/src/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/src/timer.c -------------------------------------------------------------------------------- /deps/jemalloc/test/test.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/test.sh.in -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/SFMT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/unit/SFMT.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/a0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/unit/a0.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/atomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/unit/atomic.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/unit/base.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/unit/bitmap.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/ckh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/unit/ckh.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/decay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/unit/decay.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/decay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/unit/decay.sh -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/unit/div.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/unit/fork.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/unit/hash.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/unit/hook.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/huge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/unit/huge.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/junk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/unit/junk.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/junk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/unit/junk.sh -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/junk_alloc.c: -------------------------------------------------------------------------------- 1 | #include "junk.c" 2 | -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/junk_free.c: -------------------------------------------------------------------------------- 1 | #include "junk.c" 2 | -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/unit/log.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/unit/math.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/mq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/unit/mq.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/mtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/unit/mtx.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/nstime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/unit/nstime.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/pack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/unit/pack.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/pack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/unit/pack.sh -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/pages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/unit/pages.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/ph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/unit/ph.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/prng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/unit/prng.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/ql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/unit/ql.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/qr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/unit/qr.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/rb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/unit/rb.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/rtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/unit/rtree.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/sc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/unit/sc.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/unit/seq.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/slab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/unit/slab.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/spin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/unit/spin.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/unit/stats.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/ticker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/unit/ticker.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/tsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/unit/tsd.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/zero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/unit/zero.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/zero.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/jemalloc/test/unit/zero.sh -------------------------------------------------------------------------------- /deps/linenoise/.gitignore: -------------------------------------------------------------------------------- 1 | linenoise_example 2 | *.dSYM 3 | history.txt 4 | -------------------------------------------------------------------------------- /deps/linenoise/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/linenoise/Makefile -------------------------------------------------------------------------------- /deps/linenoise/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/linenoise/README.markdown -------------------------------------------------------------------------------- /deps/linenoise/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/linenoise/example.c -------------------------------------------------------------------------------- /deps/linenoise/linenoise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/linenoise/linenoise.c -------------------------------------------------------------------------------- /deps/linenoise/linenoise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/linenoise/linenoise.h -------------------------------------------------------------------------------- /deps/lua/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/COPYRIGHT -------------------------------------------------------------------------------- /deps/lua/HISTORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/HISTORY -------------------------------------------------------------------------------- /deps/lua/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/INSTALL -------------------------------------------------------------------------------- /deps/lua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/Makefile -------------------------------------------------------------------------------- /deps/lua/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/README -------------------------------------------------------------------------------- /deps/lua/doc/contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/doc/contents.html -------------------------------------------------------------------------------- /deps/lua/doc/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/doc/cover.png -------------------------------------------------------------------------------- /deps/lua/doc/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/doc/logo.gif -------------------------------------------------------------------------------- /deps/lua/doc/lua.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/doc/lua.1 -------------------------------------------------------------------------------- /deps/lua/doc/lua.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/doc/lua.css -------------------------------------------------------------------------------- /deps/lua/doc/lua.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/doc/lua.html -------------------------------------------------------------------------------- /deps/lua/doc/luac.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/doc/luac.1 -------------------------------------------------------------------------------- /deps/lua/doc/luac.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/doc/luac.html -------------------------------------------------------------------------------- /deps/lua/doc/manual.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/doc/manual.css -------------------------------------------------------------------------------- /deps/lua/doc/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/doc/manual.html -------------------------------------------------------------------------------- /deps/lua/doc/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/doc/readme.html -------------------------------------------------------------------------------- /deps/lua/etc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/etc/Makefile -------------------------------------------------------------------------------- /deps/lua/etc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/etc/README -------------------------------------------------------------------------------- /deps/lua/etc/all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/etc/all.c -------------------------------------------------------------------------------- /deps/lua/etc/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/etc/lua.hpp -------------------------------------------------------------------------------- /deps/lua/etc/lua.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/etc/lua.ico -------------------------------------------------------------------------------- /deps/lua/etc/lua.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/etc/lua.pc -------------------------------------------------------------------------------- /deps/lua/etc/luavs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/etc/luavs.bat -------------------------------------------------------------------------------- /deps/lua/etc/min.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/etc/min.c -------------------------------------------------------------------------------- /deps/lua/etc/noparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/etc/noparser.c -------------------------------------------------------------------------------- /deps/lua/etc/strict.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/etc/strict.lua -------------------------------------------------------------------------------- /deps/lua/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/Makefile -------------------------------------------------------------------------------- /deps/lua/src/fpconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/fpconv.c -------------------------------------------------------------------------------- /deps/lua/src/fpconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/fpconv.h -------------------------------------------------------------------------------- /deps/lua/src/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/lapi.c -------------------------------------------------------------------------------- /deps/lua/src/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/lapi.h -------------------------------------------------------------------------------- /deps/lua/src/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/lauxlib.c -------------------------------------------------------------------------------- /deps/lua/src/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/lauxlib.h -------------------------------------------------------------------------------- /deps/lua/src/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/lbaselib.c -------------------------------------------------------------------------------- /deps/lua/src/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/lcode.c -------------------------------------------------------------------------------- /deps/lua/src/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/lcode.h -------------------------------------------------------------------------------- /deps/lua/src/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/ldblib.c -------------------------------------------------------------------------------- /deps/lua/src/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/ldebug.c -------------------------------------------------------------------------------- /deps/lua/src/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/ldebug.h -------------------------------------------------------------------------------- /deps/lua/src/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/ldo.c -------------------------------------------------------------------------------- /deps/lua/src/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/ldo.h -------------------------------------------------------------------------------- /deps/lua/src/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/ldump.c -------------------------------------------------------------------------------- /deps/lua/src/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/lfunc.c -------------------------------------------------------------------------------- /deps/lua/src/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/lfunc.h -------------------------------------------------------------------------------- /deps/lua/src/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/lgc.c -------------------------------------------------------------------------------- /deps/lua/src/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/lgc.h -------------------------------------------------------------------------------- /deps/lua/src/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/linit.c -------------------------------------------------------------------------------- /deps/lua/src/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/liolib.c -------------------------------------------------------------------------------- /deps/lua/src/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/llex.c -------------------------------------------------------------------------------- /deps/lua/src/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/llex.h -------------------------------------------------------------------------------- /deps/lua/src/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/llimits.h -------------------------------------------------------------------------------- /deps/lua/src/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/lmathlib.c -------------------------------------------------------------------------------- /deps/lua/src/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/lmem.c -------------------------------------------------------------------------------- /deps/lua/src/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/lmem.h -------------------------------------------------------------------------------- /deps/lua/src/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/loadlib.c -------------------------------------------------------------------------------- /deps/lua/src/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/lobject.c -------------------------------------------------------------------------------- /deps/lua/src/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/lobject.h -------------------------------------------------------------------------------- /deps/lua/src/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/lopcodes.c -------------------------------------------------------------------------------- /deps/lua/src/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/lopcodes.h -------------------------------------------------------------------------------- /deps/lua/src/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/loslib.c -------------------------------------------------------------------------------- /deps/lua/src/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/lparser.c -------------------------------------------------------------------------------- /deps/lua/src/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/lparser.h -------------------------------------------------------------------------------- /deps/lua/src/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/lstate.c -------------------------------------------------------------------------------- /deps/lua/src/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/lstate.h -------------------------------------------------------------------------------- /deps/lua/src/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/lstring.c -------------------------------------------------------------------------------- /deps/lua/src/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/lstring.h -------------------------------------------------------------------------------- /deps/lua/src/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/lstrlib.c -------------------------------------------------------------------------------- /deps/lua/src/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/ltable.c -------------------------------------------------------------------------------- /deps/lua/src/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/ltable.h -------------------------------------------------------------------------------- /deps/lua/src/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/ltablib.c -------------------------------------------------------------------------------- /deps/lua/src/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/ltm.c -------------------------------------------------------------------------------- /deps/lua/src/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/ltm.h -------------------------------------------------------------------------------- /deps/lua/src/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/lua.c -------------------------------------------------------------------------------- /deps/lua/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/lua.h -------------------------------------------------------------------------------- /deps/lua/src/lua_bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/lua_bit.c -------------------------------------------------------------------------------- /deps/lua/src/lua_cjson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/lua_cjson.c -------------------------------------------------------------------------------- /deps/lua/src/lua_cmsgpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/lua_cmsgpack.c -------------------------------------------------------------------------------- /deps/lua/src/lua_struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/lua_struct.c -------------------------------------------------------------------------------- /deps/lua/src/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/luac.c -------------------------------------------------------------------------------- /deps/lua/src/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/luaconf.h -------------------------------------------------------------------------------- /deps/lua/src/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/lualib.h -------------------------------------------------------------------------------- /deps/lua/src/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/lundump.c -------------------------------------------------------------------------------- /deps/lua/src/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/lundump.h -------------------------------------------------------------------------------- /deps/lua/src/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/lvm.c -------------------------------------------------------------------------------- /deps/lua/src/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/lvm.h -------------------------------------------------------------------------------- /deps/lua/src/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/lzio.c -------------------------------------------------------------------------------- /deps/lua/src/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/lzio.h -------------------------------------------------------------------------------- /deps/lua/src/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/print.c -------------------------------------------------------------------------------- /deps/lua/src/strbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/strbuf.c -------------------------------------------------------------------------------- /deps/lua/src/strbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/src/strbuf.h -------------------------------------------------------------------------------- /deps/lua/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/test/README -------------------------------------------------------------------------------- /deps/lua/test/bisect.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/test/bisect.lua -------------------------------------------------------------------------------- /deps/lua/test/cf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/test/cf.lua -------------------------------------------------------------------------------- /deps/lua/test/echo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/test/echo.lua -------------------------------------------------------------------------------- /deps/lua/test/env.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/test/env.lua -------------------------------------------------------------------------------- /deps/lua/test/factorial.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/test/factorial.lua -------------------------------------------------------------------------------- /deps/lua/test/fib.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/test/fib.lua -------------------------------------------------------------------------------- /deps/lua/test/fibfor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/test/fibfor.lua -------------------------------------------------------------------------------- /deps/lua/test/globals.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/test/globals.lua -------------------------------------------------------------------------------- /deps/lua/test/life.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/test/life.lua -------------------------------------------------------------------------------- /deps/lua/test/luac.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/test/luac.lua -------------------------------------------------------------------------------- /deps/lua/test/printf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/test/printf.lua -------------------------------------------------------------------------------- /deps/lua/test/readonly.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/test/readonly.lua -------------------------------------------------------------------------------- /deps/lua/test/sieve.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/test/sieve.lua -------------------------------------------------------------------------------- /deps/lua/test/sort.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/test/sort.lua -------------------------------------------------------------------------------- /deps/lua/test/table.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/test/table.lua -------------------------------------------------------------------------------- /deps/lua/test/trace-calls.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/test/trace-calls.lua -------------------------------------------------------------------------------- /deps/lua/test/trace-globals.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/test/trace-globals.lua -------------------------------------------------------------------------------- /deps/lua/test/xd.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/deps/lua/test/xd.lua -------------------------------------------------------------------------------- /redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/redis.conf -------------------------------------------------------------------------------- /runtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/runtest -------------------------------------------------------------------------------- /runtest-cluster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/runtest-cluster -------------------------------------------------------------------------------- /runtest-moduleapi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/runtest-moduleapi -------------------------------------------------------------------------------- /runtest-sentinel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/runtest-sentinel -------------------------------------------------------------------------------- /sentinel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/sentinel.conf -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/acl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/acl.c -------------------------------------------------------------------------------- /src/adlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/adlist.c -------------------------------------------------------------------------------- /src/adlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/adlist.h -------------------------------------------------------------------------------- /src/ae.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/ae.c -------------------------------------------------------------------------------- /src/ae.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/ae.h -------------------------------------------------------------------------------- /src/ae_epoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/ae_epoll.c -------------------------------------------------------------------------------- /src/ae_evport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/ae_evport.c -------------------------------------------------------------------------------- /src/ae_kqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/ae_kqueue.c -------------------------------------------------------------------------------- /src/ae_select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/ae_select.c -------------------------------------------------------------------------------- /src/anet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/anet.c -------------------------------------------------------------------------------- /src/anet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/anet.h -------------------------------------------------------------------------------- /src/aof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/aof.c -------------------------------------------------------------------------------- /src/asciilogo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/asciilogo.h -------------------------------------------------------------------------------- /src/atomicvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/atomicvar.h -------------------------------------------------------------------------------- /src/bio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/bio.c -------------------------------------------------------------------------------- /src/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/bio.h -------------------------------------------------------------------------------- /src/bitops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/bitops.c -------------------------------------------------------------------------------- /src/blocked.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/blocked.c -------------------------------------------------------------------------------- /src/call_reply.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/call_reply.c -------------------------------------------------------------------------------- /src/call_reply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/call_reply.h -------------------------------------------------------------------------------- /src/childinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/childinfo.c -------------------------------------------------------------------------------- /src/cli_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/cli_common.c -------------------------------------------------------------------------------- /src/cli_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/cli_common.h -------------------------------------------------------------------------------- /src/cluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/cluster.c -------------------------------------------------------------------------------- /src/cluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/cluster.h -------------------------------------------------------------------------------- /src/commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands.c -------------------------------------------------------------------------------- /src/commands/acl-cat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/acl-cat.json -------------------------------------------------------------------------------- /src/commands/acl-deluser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/acl-deluser.json -------------------------------------------------------------------------------- /src/commands/acl-dryrun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/acl-dryrun.json -------------------------------------------------------------------------------- /src/commands/acl-genpass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/acl-genpass.json -------------------------------------------------------------------------------- /src/commands/acl-getuser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/acl-getuser.json -------------------------------------------------------------------------------- /src/commands/acl-help.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/acl-help.json -------------------------------------------------------------------------------- /src/commands/acl-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/acl-list.json -------------------------------------------------------------------------------- /src/commands/acl-load.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/acl-load.json -------------------------------------------------------------------------------- /src/commands/acl-log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/acl-log.json -------------------------------------------------------------------------------- /src/commands/acl-save.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/acl-save.json -------------------------------------------------------------------------------- /src/commands/acl-setuser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/acl-setuser.json -------------------------------------------------------------------------------- /src/commands/acl-users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/acl-users.json -------------------------------------------------------------------------------- /src/commands/acl-whoami.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/acl-whoami.json -------------------------------------------------------------------------------- /src/commands/acl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/acl.json -------------------------------------------------------------------------------- /src/commands/append.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/append.json -------------------------------------------------------------------------------- /src/commands/asking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/asking.json -------------------------------------------------------------------------------- /src/commands/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/auth.json -------------------------------------------------------------------------------- /src/commands/bgrewriteaof.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/bgrewriteaof.json -------------------------------------------------------------------------------- /src/commands/bgsave.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/bgsave.json -------------------------------------------------------------------------------- /src/commands/bitcount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/bitcount.json -------------------------------------------------------------------------------- /src/commands/bitfield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/bitfield.json -------------------------------------------------------------------------------- /src/commands/bitfield_ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/bitfield_ro.json -------------------------------------------------------------------------------- /src/commands/bitop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/bitop.json -------------------------------------------------------------------------------- /src/commands/bitpos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/bitpos.json -------------------------------------------------------------------------------- /src/commands/blmove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/blmove.json -------------------------------------------------------------------------------- /src/commands/blmpop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/blmpop.json -------------------------------------------------------------------------------- /src/commands/blpop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/blpop.json -------------------------------------------------------------------------------- /src/commands/brpop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/brpop.json -------------------------------------------------------------------------------- /src/commands/brpoplpush.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/brpoplpush.json -------------------------------------------------------------------------------- /src/commands/bzmpop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/bzmpop.json -------------------------------------------------------------------------------- /src/commands/bzpopmax.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/bzpopmax.json -------------------------------------------------------------------------------- /src/commands/bzpopmin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/bzpopmin.json -------------------------------------------------------------------------------- /src/commands/client-caching.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/client-caching.json -------------------------------------------------------------------------------- /src/commands/client-getname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/client-getname.json -------------------------------------------------------------------------------- /src/commands/client-help.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/client-help.json -------------------------------------------------------------------------------- /src/commands/client-id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/client-id.json -------------------------------------------------------------------------------- /src/commands/client-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/client-info.json -------------------------------------------------------------------------------- /src/commands/client-kill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/client-kill.json -------------------------------------------------------------------------------- /src/commands/client-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/client-list.json -------------------------------------------------------------------------------- /src/commands/client-pause.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/client-pause.json -------------------------------------------------------------------------------- /src/commands/client-reply.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/client-reply.json -------------------------------------------------------------------------------- /src/commands/client-setname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/client-setname.json -------------------------------------------------------------------------------- /src/commands/client-unblock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/client-unblock.json -------------------------------------------------------------------------------- /src/commands/client-unpause.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/client-unpause.json -------------------------------------------------------------------------------- /src/commands/client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/client.json -------------------------------------------------------------------------------- /src/commands/cluster-forget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/cluster-forget.json -------------------------------------------------------------------------------- /src/commands/cluster-help.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/cluster-help.json -------------------------------------------------------------------------------- /src/commands/cluster-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/cluster-info.json -------------------------------------------------------------------------------- /src/commands/cluster-links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/cluster-links.json -------------------------------------------------------------------------------- /src/commands/cluster-meet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/cluster-meet.json -------------------------------------------------------------------------------- /src/commands/cluster-myid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/cluster-myid.json -------------------------------------------------------------------------------- /src/commands/cluster-nodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/cluster-nodes.json -------------------------------------------------------------------------------- /src/commands/cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/cluster.json -------------------------------------------------------------------------------- /src/commands/command-docs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/command-docs.json -------------------------------------------------------------------------------- /src/commands/command-help.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/command-help.json -------------------------------------------------------------------------------- /src/commands/command-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/command-info.json -------------------------------------------------------------------------------- /src/commands/command-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/command-list.json -------------------------------------------------------------------------------- /src/commands/command.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/command.json -------------------------------------------------------------------------------- /src/commands/config-get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/config-get.json -------------------------------------------------------------------------------- /src/commands/config-help.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/config-help.json -------------------------------------------------------------------------------- /src/commands/config-set.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/config-set.json -------------------------------------------------------------------------------- /src/commands/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/config.json -------------------------------------------------------------------------------- /src/commands/copy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/copy.json -------------------------------------------------------------------------------- /src/commands/dbsize.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/dbsize.json -------------------------------------------------------------------------------- /src/commands/debug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/debug.json -------------------------------------------------------------------------------- /src/commands/decr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/decr.json -------------------------------------------------------------------------------- /src/commands/decrby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/decrby.json -------------------------------------------------------------------------------- /src/commands/del.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/del.json -------------------------------------------------------------------------------- /src/commands/discard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/discard.json -------------------------------------------------------------------------------- /src/commands/dump.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/dump.json -------------------------------------------------------------------------------- /src/commands/echo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/echo.json -------------------------------------------------------------------------------- /src/commands/eval.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/eval.json -------------------------------------------------------------------------------- /src/commands/eval_ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/eval_ro.json -------------------------------------------------------------------------------- /src/commands/evalsha.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/evalsha.json -------------------------------------------------------------------------------- /src/commands/evalsha_ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/evalsha_ro.json -------------------------------------------------------------------------------- /src/commands/exec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/exec.json -------------------------------------------------------------------------------- /src/commands/exists.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/exists.json -------------------------------------------------------------------------------- /src/commands/expire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/expire.json -------------------------------------------------------------------------------- /src/commands/expireat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/expireat.json -------------------------------------------------------------------------------- /src/commands/expiretime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/expiretime.json -------------------------------------------------------------------------------- /src/commands/failover.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/failover.json -------------------------------------------------------------------------------- /src/commands/fcall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/fcall.json -------------------------------------------------------------------------------- /src/commands/fcall_ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/fcall_ro.json -------------------------------------------------------------------------------- /src/commands/flushall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/flushall.json -------------------------------------------------------------------------------- /src/commands/flushdb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/flushdb.json -------------------------------------------------------------------------------- /src/commands/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/function.json -------------------------------------------------------------------------------- /src/commands/geoadd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/geoadd.json -------------------------------------------------------------------------------- /src/commands/geodist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/geodist.json -------------------------------------------------------------------------------- /src/commands/geohash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/geohash.json -------------------------------------------------------------------------------- /src/commands/geopos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/geopos.json -------------------------------------------------------------------------------- /src/commands/georadius.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/georadius.json -------------------------------------------------------------------------------- /src/commands/georadius_ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/georadius_ro.json -------------------------------------------------------------------------------- /src/commands/geosearch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/geosearch.json -------------------------------------------------------------------------------- /src/commands/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/get.json -------------------------------------------------------------------------------- /src/commands/getbit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/getbit.json -------------------------------------------------------------------------------- /src/commands/getdel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/getdel.json -------------------------------------------------------------------------------- /src/commands/getex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/getex.json -------------------------------------------------------------------------------- /src/commands/getrange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/getrange.json -------------------------------------------------------------------------------- /src/commands/getset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/getset.json -------------------------------------------------------------------------------- /src/commands/hdel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/hdel.json -------------------------------------------------------------------------------- /src/commands/hello.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/hello.json -------------------------------------------------------------------------------- /src/commands/hexists.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/hexists.json -------------------------------------------------------------------------------- /src/commands/hget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/hget.json -------------------------------------------------------------------------------- /src/commands/hgetall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/hgetall.json -------------------------------------------------------------------------------- /src/commands/hincrby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/hincrby.json -------------------------------------------------------------------------------- /src/commands/hincrbyfloat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/hincrbyfloat.json -------------------------------------------------------------------------------- /src/commands/hkeys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/hkeys.json -------------------------------------------------------------------------------- /src/commands/hlen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/hlen.json -------------------------------------------------------------------------------- /src/commands/hmget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/hmget.json -------------------------------------------------------------------------------- /src/commands/hmset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/hmset.json -------------------------------------------------------------------------------- /src/commands/hrandfield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/hrandfield.json -------------------------------------------------------------------------------- /src/commands/hscan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/hscan.json -------------------------------------------------------------------------------- /src/commands/hset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/hset.json -------------------------------------------------------------------------------- /src/commands/hsetnx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/hsetnx.json -------------------------------------------------------------------------------- /src/commands/hstrlen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/hstrlen.json -------------------------------------------------------------------------------- /src/commands/hvals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/hvals.json -------------------------------------------------------------------------------- /src/commands/incr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/incr.json -------------------------------------------------------------------------------- /src/commands/incrby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/incrby.json -------------------------------------------------------------------------------- /src/commands/incrbyfloat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/incrbyfloat.json -------------------------------------------------------------------------------- /src/commands/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/info.json -------------------------------------------------------------------------------- /src/commands/keys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/keys.json -------------------------------------------------------------------------------- /src/commands/lastsave.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/lastsave.json -------------------------------------------------------------------------------- /src/commands/latency-help.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/latency-help.json -------------------------------------------------------------------------------- /src/commands/latency.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/latency.json -------------------------------------------------------------------------------- /src/commands/lcs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/lcs.json -------------------------------------------------------------------------------- /src/commands/lindex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/lindex.json -------------------------------------------------------------------------------- /src/commands/linsert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/linsert.json -------------------------------------------------------------------------------- /src/commands/llen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/llen.json -------------------------------------------------------------------------------- /src/commands/lmove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/lmove.json -------------------------------------------------------------------------------- /src/commands/lmpop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/lmpop.json -------------------------------------------------------------------------------- /src/commands/lolwut.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/lolwut.json -------------------------------------------------------------------------------- /src/commands/lpop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/lpop.json -------------------------------------------------------------------------------- /src/commands/lpos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/lpos.json -------------------------------------------------------------------------------- /src/commands/lpush.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/lpush.json -------------------------------------------------------------------------------- /src/commands/lpushx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/lpushx.json -------------------------------------------------------------------------------- /src/commands/lrange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/lrange.json -------------------------------------------------------------------------------- /src/commands/lrem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/lrem.json -------------------------------------------------------------------------------- /src/commands/lset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/lset.json -------------------------------------------------------------------------------- /src/commands/ltrim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/ltrim.json -------------------------------------------------------------------------------- /src/commands/memory-help.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/memory-help.json -------------------------------------------------------------------------------- /src/commands/memory-purge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/memory-purge.json -------------------------------------------------------------------------------- /src/commands/memory-stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/memory-stats.json -------------------------------------------------------------------------------- /src/commands/memory-usage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/memory-usage.json -------------------------------------------------------------------------------- /src/commands/memory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/memory.json -------------------------------------------------------------------------------- /src/commands/mget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/mget.json -------------------------------------------------------------------------------- /src/commands/migrate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/migrate.json -------------------------------------------------------------------------------- /src/commands/module-help.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/module-help.json -------------------------------------------------------------------------------- /src/commands/module-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/module-list.json -------------------------------------------------------------------------------- /src/commands/module-load.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/module-load.json -------------------------------------------------------------------------------- /src/commands/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/module.json -------------------------------------------------------------------------------- /src/commands/monitor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/monitor.json -------------------------------------------------------------------------------- /src/commands/move.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/move.json -------------------------------------------------------------------------------- /src/commands/mset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/mset.json -------------------------------------------------------------------------------- /src/commands/msetnx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/msetnx.json -------------------------------------------------------------------------------- /src/commands/multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/multi.json -------------------------------------------------------------------------------- /src/commands/object-freq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/object-freq.json -------------------------------------------------------------------------------- /src/commands/object-help.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/object-help.json -------------------------------------------------------------------------------- /src/commands/object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/object.json -------------------------------------------------------------------------------- /src/commands/persist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/persist.json -------------------------------------------------------------------------------- /src/commands/pexpire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/pexpire.json -------------------------------------------------------------------------------- /src/commands/pexpireat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/pexpireat.json -------------------------------------------------------------------------------- /src/commands/pexpiretime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/pexpiretime.json -------------------------------------------------------------------------------- /src/commands/pfadd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/pfadd.json -------------------------------------------------------------------------------- /src/commands/pfcount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/pfcount.json -------------------------------------------------------------------------------- /src/commands/pfdebug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/pfdebug.json -------------------------------------------------------------------------------- /src/commands/pfmerge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/pfmerge.json -------------------------------------------------------------------------------- /src/commands/pfselftest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/pfselftest.json -------------------------------------------------------------------------------- /src/commands/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/ping.json -------------------------------------------------------------------------------- /src/commands/psetex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/psetex.json -------------------------------------------------------------------------------- /src/commands/psubscribe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/psubscribe.json -------------------------------------------------------------------------------- /src/commands/psync.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/psync.json -------------------------------------------------------------------------------- /src/commands/pttl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/pttl.json -------------------------------------------------------------------------------- /src/commands/publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/publish.json -------------------------------------------------------------------------------- /src/commands/pubsub-help.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/pubsub-help.json -------------------------------------------------------------------------------- /src/commands/pubsub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/pubsub.json -------------------------------------------------------------------------------- /src/commands/punsubscribe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/punsubscribe.json -------------------------------------------------------------------------------- /src/commands/quit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/quit.json -------------------------------------------------------------------------------- /src/commands/randomkey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/randomkey.json -------------------------------------------------------------------------------- /src/commands/readonly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/readonly.json -------------------------------------------------------------------------------- /src/commands/readwrite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/readwrite.json -------------------------------------------------------------------------------- /src/commands/rename.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/rename.json -------------------------------------------------------------------------------- /src/commands/renamenx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/renamenx.json -------------------------------------------------------------------------------- /src/commands/replconf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/replconf.json -------------------------------------------------------------------------------- /src/commands/replicaof.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/replicaof.json -------------------------------------------------------------------------------- /src/commands/reset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/reset.json -------------------------------------------------------------------------------- /src/commands/restore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/restore.json -------------------------------------------------------------------------------- /src/commands/role.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/role.json -------------------------------------------------------------------------------- /src/commands/rpop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/rpop.json -------------------------------------------------------------------------------- /src/commands/rpoplpush.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/rpoplpush.json -------------------------------------------------------------------------------- /src/commands/rpush.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/rpush.json -------------------------------------------------------------------------------- /src/commands/rpushx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/rpushx.json -------------------------------------------------------------------------------- /src/commands/sadd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/sadd.json -------------------------------------------------------------------------------- /src/commands/save.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/save.json -------------------------------------------------------------------------------- /src/commands/scan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/scan.json -------------------------------------------------------------------------------- /src/commands/scard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/scard.json -------------------------------------------------------------------------------- /src/commands/script-debug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/script-debug.json -------------------------------------------------------------------------------- /src/commands/script-flush.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/script-flush.json -------------------------------------------------------------------------------- /src/commands/script-help.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/script-help.json -------------------------------------------------------------------------------- /src/commands/script-kill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/script-kill.json -------------------------------------------------------------------------------- /src/commands/script-load.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/script-load.json -------------------------------------------------------------------------------- /src/commands/script.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/script.json -------------------------------------------------------------------------------- /src/commands/sdiff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/sdiff.json -------------------------------------------------------------------------------- /src/commands/sdiffstore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/sdiffstore.json -------------------------------------------------------------------------------- /src/commands/select.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/select.json -------------------------------------------------------------------------------- /src/commands/sentinel-set.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/sentinel-set.json -------------------------------------------------------------------------------- /src/commands/sentinel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/sentinel.json -------------------------------------------------------------------------------- /src/commands/set.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/set.json -------------------------------------------------------------------------------- /src/commands/setbit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/setbit.json -------------------------------------------------------------------------------- /src/commands/setex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/setex.json -------------------------------------------------------------------------------- /src/commands/setnx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/setnx.json -------------------------------------------------------------------------------- /src/commands/setrange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/setrange.json -------------------------------------------------------------------------------- /src/commands/shutdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/shutdown.json -------------------------------------------------------------------------------- /src/commands/sinter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/sinter.json -------------------------------------------------------------------------------- /src/commands/sintercard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/sintercard.json -------------------------------------------------------------------------------- /src/commands/sinterstore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/sinterstore.json -------------------------------------------------------------------------------- /src/commands/sismember.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/sismember.json -------------------------------------------------------------------------------- /src/commands/slaveof.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/slaveof.json -------------------------------------------------------------------------------- /src/commands/slowlog-get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/slowlog-get.json -------------------------------------------------------------------------------- /src/commands/slowlog-help.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/slowlog-help.json -------------------------------------------------------------------------------- /src/commands/slowlog-len.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/slowlog-len.json -------------------------------------------------------------------------------- /src/commands/slowlog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/slowlog.json -------------------------------------------------------------------------------- /src/commands/smembers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/smembers.json -------------------------------------------------------------------------------- /src/commands/smismember.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/smismember.json -------------------------------------------------------------------------------- /src/commands/smove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/smove.json -------------------------------------------------------------------------------- /src/commands/sort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/sort.json -------------------------------------------------------------------------------- /src/commands/sort_ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/sort_ro.json -------------------------------------------------------------------------------- /src/commands/spop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/spop.json -------------------------------------------------------------------------------- /src/commands/spublish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/spublish.json -------------------------------------------------------------------------------- /src/commands/srandmember.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/srandmember.json -------------------------------------------------------------------------------- /src/commands/srem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/srem.json -------------------------------------------------------------------------------- /src/commands/sscan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/sscan.json -------------------------------------------------------------------------------- /src/commands/ssubscribe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/ssubscribe.json -------------------------------------------------------------------------------- /src/commands/strlen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/strlen.json -------------------------------------------------------------------------------- /src/commands/subscribe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/subscribe.json -------------------------------------------------------------------------------- /src/commands/substr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/substr.json -------------------------------------------------------------------------------- /src/commands/sunion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/sunion.json -------------------------------------------------------------------------------- /src/commands/sunionstore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/sunionstore.json -------------------------------------------------------------------------------- /src/commands/sunsubscribe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/sunsubscribe.json -------------------------------------------------------------------------------- /src/commands/swapdb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/swapdb.json -------------------------------------------------------------------------------- /src/commands/sync.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/sync.json -------------------------------------------------------------------------------- /src/commands/time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/time.json -------------------------------------------------------------------------------- /src/commands/touch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/touch.json -------------------------------------------------------------------------------- /src/commands/ttl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/ttl.json -------------------------------------------------------------------------------- /src/commands/type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/type.json -------------------------------------------------------------------------------- /src/commands/unlink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/unlink.json -------------------------------------------------------------------------------- /src/commands/unsubscribe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/unsubscribe.json -------------------------------------------------------------------------------- /src/commands/unwatch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/unwatch.json -------------------------------------------------------------------------------- /src/commands/wait.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/wait.json -------------------------------------------------------------------------------- /src/commands/watch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/watch.json -------------------------------------------------------------------------------- /src/commands/xack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/xack.json -------------------------------------------------------------------------------- /src/commands/xadd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/xadd.json -------------------------------------------------------------------------------- /src/commands/xautoclaim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/xautoclaim.json -------------------------------------------------------------------------------- /src/commands/xclaim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/xclaim.json -------------------------------------------------------------------------------- /src/commands/xdel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/xdel.json -------------------------------------------------------------------------------- /src/commands/xgroup-help.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/xgroup-help.json -------------------------------------------------------------------------------- /src/commands/xgroup-setid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/xgroup-setid.json -------------------------------------------------------------------------------- /src/commands/xgroup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/xgroup.json -------------------------------------------------------------------------------- /src/commands/xinfo-groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/xinfo-groups.json -------------------------------------------------------------------------------- /src/commands/xinfo-help.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/xinfo-help.json -------------------------------------------------------------------------------- /src/commands/xinfo-stream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/xinfo-stream.json -------------------------------------------------------------------------------- /src/commands/xinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/xinfo.json -------------------------------------------------------------------------------- /src/commands/xlen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/xlen.json -------------------------------------------------------------------------------- /src/commands/xpending.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/xpending.json -------------------------------------------------------------------------------- /src/commands/xrange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/xrange.json -------------------------------------------------------------------------------- /src/commands/xread.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/xread.json -------------------------------------------------------------------------------- /src/commands/xreadgroup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/xreadgroup.json -------------------------------------------------------------------------------- /src/commands/xrevrange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/xrevrange.json -------------------------------------------------------------------------------- /src/commands/xsetid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/xsetid.json -------------------------------------------------------------------------------- /src/commands/xtrim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/xtrim.json -------------------------------------------------------------------------------- /src/commands/zadd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/zadd.json -------------------------------------------------------------------------------- /src/commands/zcard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/zcard.json -------------------------------------------------------------------------------- /src/commands/zcount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/zcount.json -------------------------------------------------------------------------------- /src/commands/zdiff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/zdiff.json -------------------------------------------------------------------------------- /src/commands/zdiffstore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/zdiffstore.json -------------------------------------------------------------------------------- /src/commands/zincrby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/zincrby.json -------------------------------------------------------------------------------- /src/commands/zinter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/zinter.json -------------------------------------------------------------------------------- /src/commands/zintercard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/zintercard.json -------------------------------------------------------------------------------- /src/commands/zinterstore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/zinterstore.json -------------------------------------------------------------------------------- /src/commands/zlexcount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/zlexcount.json -------------------------------------------------------------------------------- /src/commands/zmpop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/zmpop.json -------------------------------------------------------------------------------- /src/commands/zmscore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/zmscore.json -------------------------------------------------------------------------------- /src/commands/zpopmax.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/zpopmax.json -------------------------------------------------------------------------------- /src/commands/zpopmin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/zpopmin.json -------------------------------------------------------------------------------- /src/commands/zrandmember.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/zrandmember.json -------------------------------------------------------------------------------- /src/commands/zrange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/zrange.json -------------------------------------------------------------------------------- /src/commands/zrangebylex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/zrangebylex.json -------------------------------------------------------------------------------- /src/commands/zrangestore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/zrangestore.json -------------------------------------------------------------------------------- /src/commands/zrank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/zrank.json -------------------------------------------------------------------------------- /src/commands/zrem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/zrem.json -------------------------------------------------------------------------------- /src/commands/zrevrange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/zrevrange.json -------------------------------------------------------------------------------- /src/commands/zrevrank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/zrevrank.json -------------------------------------------------------------------------------- /src/commands/zscan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/zscan.json -------------------------------------------------------------------------------- /src/commands/zscore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/zscore.json -------------------------------------------------------------------------------- /src/commands/zunion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/zunion.json -------------------------------------------------------------------------------- /src/commands/zunionstore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/commands/zunionstore.json -------------------------------------------------------------------------------- /src/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/config.c -------------------------------------------------------------------------------- /src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/config.h -------------------------------------------------------------------------------- /src/connection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/connection.c -------------------------------------------------------------------------------- /src/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/connection.h -------------------------------------------------------------------------------- /src/connhelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/connhelpers.h -------------------------------------------------------------------------------- /src/crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/crc16.c -------------------------------------------------------------------------------- /src/crc16_slottable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/crc16_slottable.h -------------------------------------------------------------------------------- /src/crc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/crc64.c -------------------------------------------------------------------------------- /src/crc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/crc64.h -------------------------------------------------------------------------------- /src/crcspeed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/crcspeed.c -------------------------------------------------------------------------------- /src/crcspeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/crcspeed.h -------------------------------------------------------------------------------- /src/db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/db.c -------------------------------------------------------------------------------- /src/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/debug.c -------------------------------------------------------------------------------- /src/debugmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/debugmacro.h -------------------------------------------------------------------------------- /src/defrag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/defrag.c -------------------------------------------------------------------------------- /src/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/dict.c -------------------------------------------------------------------------------- /src/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/dict.h -------------------------------------------------------------------------------- /src/endianconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/endianconv.c -------------------------------------------------------------------------------- /src/endianconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/endianconv.h -------------------------------------------------------------------------------- /src/eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/eval.c -------------------------------------------------------------------------------- /src/evict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/evict.c -------------------------------------------------------------------------------- /src/expire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/expire.c -------------------------------------------------------------------------------- /src/fmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/fmacros.h -------------------------------------------------------------------------------- /src/function_lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/function_lua.c -------------------------------------------------------------------------------- /src/functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/functions.c -------------------------------------------------------------------------------- /src/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/functions.h -------------------------------------------------------------------------------- /src/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/geo.c -------------------------------------------------------------------------------- /src/geo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/geo.h -------------------------------------------------------------------------------- /src/geohash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/geohash.c -------------------------------------------------------------------------------- /src/geohash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/geohash.h -------------------------------------------------------------------------------- /src/geohash_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/geohash_helper.c -------------------------------------------------------------------------------- /src/geohash_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/geohash_helper.h -------------------------------------------------------------------------------- /src/help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/help.h -------------------------------------------------------------------------------- /src/hyperloglog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/hyperloglog.c -------------------------------------------------------------------------------- /src/intset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/intset.c -------------------------------------------------------------------------------- /src/intset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/intset.h -------------------------------------------------------------------------------- /src/latency.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/latency.c -------------------------------------------------------------------------------- /src/latency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/latency.h -------------------------------------------------------------------------------- /src/lazyfree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/lazyfree.c -------------------------------------------------------------------------------- /src/listpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/listpack.c -------------------------------------------------------------------------------- /src/listpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/listpack.h -------------------------------------------------------------------------------- /src/listpack_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/listpack_malloc.h -------------------------------------------------------------------------------- /src/localtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/localtime.c -------------------------------------------------------------------------------- /src/lolwut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/lolwut.c -------------------------------------------------------------------------------- /src/lolwut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/lolwut.h -------------------------------------------------------------------------------- /src/lolwut5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/lolwut5.c -------------------------------------------------------------------------------- /src/lolwut6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/lolwut6.c -------------------------------------------------------------------------------- /src/lzf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/lzf.h -------------------------------------------------------------------------------- /src/lzfP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/lzfP.h -------------------------------------------------------------------------------- /src/lzf_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/lzf_c.c -------------------------------------------------------------------------------- /src/lzf_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/lzf_d.c -------------------------------------------------------------------------------- /src/memtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/memtest.c -------------------------------------------------------------------------------- /src/mkreleasehdr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/mkreleasehdr.sh -------------------------------------------------------------------------------- /src/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/module.c -------------------------------------------------------------------------------- /src/modules/.gitignore: -------------------------------------------------------------------------------- 1 | *.so 2 | *.xo 3 | -------------------------------------------------------------------------------- /src/modules/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/modules/Makefile -------------------------------------------------------------------------------- /src/modules/helloacl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/modules/helloacl.c -------------------------------------------------------------------------------- /src/modules/helloblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/modules/helloblock.c -------------------------------------------------------------------------------- /src/modules/hellocluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/modules/hellocluster.c -------------------------------------------------------------------------------- /src/modules/hellodict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/modules/hellodict.c -------------------------------------------------------------------------------- /src/modules/hellohook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/modules/hellohook.c -------------------------------------------------------------------------------- /src/modules/hellotimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/modules/hellotimer.c -------------------------------------------------------------------------------- /src/modules/hellotype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/modules/hellotype.c -------------------------------------------------------------------------------- /src/modules/helloworld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/modules/helloworld.c -------------------------------------------------------------------------------- /src/monotonic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/monotonic.c -------------------------------------------------------------------------------- /src/monotonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/monotonic.h -------------------------------------------------------------------------------- /src/mt19937-64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/mt19937-64.c -------------------------------------------------------------------------------- /src/mt19937-64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/mt19937-64.h -------------------------------------------------------------------------------- /src/multi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/multi.c -------------------------------------------------------------------------------- /src/networking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/networking.c -------------------------------------------------------------------------------- /src/notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/notify.c -------------------------------------------------------------------------------- /src/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/object.c -------------------------------------------------------------------------------- /src/pqsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/pqsort.c -------------------------------------------------------------------------------- /src/pqsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/pqsort.h -------------------------------------------------------------------------------- /src/pubsub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/pubsub.c -------------------------------------------------------------------------------- /src/quicklist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/quicklist.c -------------------------------------------------------------------------------- /src/quicklist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/quicklist.h -------------------------------------------------------------------------------- /src/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/rand.c -------------------------------------------------------------------------------- /src/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/rand.h -------------------------------------------------------------------------------- /src/rax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/rax.c -------------------------------------------------------------------------------- /src/rax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/rax.h -------------------------------------------------------------------------------- /src/rax_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/rax_malloc.h -------------------------------------------------------------------------------- /src/rdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/rdb.c -------------------------------------------------------------------------------- /src/rdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/rdb.h -------------------------------------------------------------------------------- /src/redis-benchmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/redis-benchmark.c -------------------------------------------------------------------------------- /src/redis-check-aof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/redis-check-aof.c -------------------------------------------------------------------------------- /src/redis-check-rdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/redis-check-rdb.c -------------------------------------------------------------------------------- /src/redis-cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/redis-cli.c -------------------------------------------------------------------------------- /src/redis-trib.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/redis-trib.rb -------------------------------------------------------------------------------- /src/redisassert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/redisassert.c -------------------------------------------------------------------------------- /src/redisassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/redisassert.h -------------------------------------------------------------------------------- /src/redismodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/redismodule.h -------------------------------------------------------------------------------- /src/release.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/release.c -------------------------------------------------------------------------------- /src/replication.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/replication.c -------------------------------------------------------------------------------- /src/resp_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/resp_parser.c -------------------------------------------------------------------------------- /src/resp_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/resp_parser.h -------------------------------------------------------------------------------- /src/rio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/rio.c -------------------------------------------------------------------------------- /src/rio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/rio.h -------------------------------------------------------------------------------- /src/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/script.c -------------------------------------------------------------------------------- /src/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/script.h -------------------------------------------------------------------------------- /src/script_lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/script_lua.c -------------------------------------------------------------------------------- /src/script_lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/script_lua.h -------------------------------------------------------------------------------- /src/sds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/sds.c -------------------------------------------------------------------------------- /src/sds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/sds.h -------------------------------------------------------------------------------- /src/sdsalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/sdsalloc.h -------------------------------------------------------------------------------- /src/sentinel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/sentinel.c -------------------------------------------------------------------------------- /src/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/server.c -------------------------------------------------------------------------------- /src/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/server.h -------------------------------------------------------------------------------- /src/setcpuaffinity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/setcpuaffinity.c -------------------------------------------------------------------------------- /src/setproctitle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/setproctitle.c -------------------------------------------------------------------------------- /src/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/sha1.c -------------------------------------------------------------------------------- /src/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/sha1.h -------------------------------------------------------------------------------- /src/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/sha256.c -------------------------------------------------------------------------------- /src/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/sha256.h -------------------------------------------------------------------------------- /src/siphash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/siphash.c -------------------------------------------------------------------------------- /src/slowlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/slowlog.c -------------------------------------------------------------------------------- /src/slowlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/slowlog.h -------------------------------------------------------------------------------- /src/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/socket.c -------------------------------------------------------------------------------- /src/solarisfixes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/solarisfixes.h -------------------------------------------------------------------------------- /src/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/sort.c -------------------------------------------------------------------------------- /src/sparkline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/sparkline.c -------------------------------------------------------------------------------- /src/sparkline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/sparkline.h -------------------------------------------------------------------------------- /src/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/stream.h -------------------------------------------------------------------------------- /src/strl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/strl.c -------------------------------------------------------------------------------- /src/syncio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/syncio.c -------------------------------------------------------------------------------- /src/syscheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/syscheck.c -------------------------------------------------------------------------------- /src/syscheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/syscheck.h -------------------------------------------------------------------------------- /src/t_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/t_hash.c -------------------------------------------------------------------------------- /src/t_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/t_list.c -------------------------------------------------------------------------------- /src/t_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/t_set.c -------------------------------------------------------------------------------- /src/t_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/t_stream.c -------------------------------------------------------------------------------- /src/t_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/t_string.c -------------------------------------------------------------------------------- /src/t_zset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/t_zset.c -------------------------------------------------------------------------------- /src/testhelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/testhelp.h -------------------------------------------------------------------------------- /src/timeout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/timeout.c -------------------------------------------------------------------------------- /src/tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/tls.c -------------------------------------------------------------------------------- /src/tracking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/tracking.c -------------------------------------------------------------------------------- /src/unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/unix.c -------------------------------------------------------------------------------- /src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/util.c -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/util.h -------------------------------------------------------------------------------- /src/valgrind.sup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/valgrind.sup -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/version.h -------------------------------------------------------------------------------- /src/ziplist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/ziplist.c -------------------------------------------------------------------------------- /src/ziplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/ziplist.h -------------------------------------------------------------------------------- /src/zipmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/zipmap.c -------------------------------------------------------------------------------- /src/zipmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/zipmap.h -------------------------------------------------------------------------------- /src/zmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/zmalloc.c -------------------------------------------------------------------------------- /src/zmalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/src/zmalloc.h -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/assets/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/assets/default.conf -------------------------------------------------------------------------------- /tests/assets/encodings.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/assets/encodings.rdb -------------------------------------------------------------------------------- /tests/assets/hash-ziplist.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/assets/hash-ziplist.rdb -------------------------------------------------------------------------------- /tests/assets/hash-zipmap.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/assets/hash-zipmap.rdb -------------------------------------------------------------------------------- /tests/assets/minimal.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/assets/minimal.conf -------------------------------------------------------------------------------- /tests/assets/nodefaultuser.acl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/assets/nodefaultuser.acl -------------------------------------------------------------------------------- /tests/assets/rdb-preamble.aof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/assets/rdb-preamble.aof -------------------------------------------------------------------------------- /tests/assets/scriptbackup.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/assets/scriptbackup.rdb -------------------------------------------------------------------------------- /tests/assets/user.acl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/assets/user.acl -------------------------------------------------------------------------------- /tests/assets/zset-ziplist.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/assets/zset-ziplist.rdb -------------------------------------------------------------------------------- /tests/cluster/cluster.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/cluster/cluster.tcl -------------------------------------------------------------------------------- /tests/cluster/run.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/cluster/run.tcl -------------------------------------------------------------------------------- /tests/cluster/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | redis_* 2 | sentinel_* 3 | -------------------------------------------------------------------------------- /tests/helpers/bg_block_op.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/helpers/bg_block_op.tcl -------------------------------------------------------------------------------- /tests/instances.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/instances.tcl -------------------------------------------------------------------------------- /tests/integration/aof-race.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/integration/aof-race.tcl -------------------------------------------------------------------------------- /tests/integration/aof.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/integration/aof.tcl -------------------------------------------------------------------------------- /tests/integration/failover.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/integration/failover.tcl -------------------------------------------------------------------------------- /tests/integration/logging.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/integration/logging.tcl -------------------------------------------------------------------------------- /tests/integration/psync2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/integration/psync2.tcl -------------------------------------------------------------------------------- /tests/integration/rdb.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/integration/rdb.tcl -------------------------------------------------------------------------------- /tests/integration/shutdown.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/integration/shutdown.tcl -------------------------------------------------------------------------------- /tests/modules/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/modules/Makefile -------------------------------------------------------------------------------- /tests/modules/aclcheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/modules/aclcheck.c -------------------------------------------------------------------------------- /tests/modules/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/modules/auth.c -------------------------------------------------------------------------------- /tests/modules/basics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/modules/basics.c -------------------------------------------------------------------------------- /tests/modules/blockedclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/modules/blockedclient.c -------------------------------------------------------------------------------- /tests/modules/blockonkeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/modules/blockonkeys.c -------------------------------------------------------------------------------- /tests/modules/commandfilter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/modules/commandfilter.c -------------------------------------------------------------------------------- /tests/modules/datatype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/modules/datatype.c -------------------------------------------------------------------------------- /tests/modules/datatype2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/modules/datatype2.c -------------------------------------------------------------------------------- /tests/modules/defragtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/modules/defragtest.c -------------------------------------------------------------------------------- /tests/modules/eventloop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/modules/eventloop.c -------------------------------------------------------------------------------- /tests/modules/fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/modules/fork.c -------------------------------------------------------------------------------- /tests/modules/getchannels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/modules/getchannels.c -------------------------------------------------------------------------------- /tests/modules/getkeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/modules/getkeys.c -------------------------------------------------------------------------------- /tests/modules/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/modules/hash.c -------------------------------------------------------------------------------- /tests/modules/hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/modules/hooks.c -------------------------------------------------------------------------------- /tests/modules/infotest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/modules/infotest.c -------------------------------------------------------------------------------- /tests/modules/keyspecs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/modules/keyspecs.c -------------------------------------------------------------------------------- /tests/modules/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/modules/list.c -------------------------------------------------------------------------------- /tests/modules/mallocsize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/modules/mallocsize.c -------------------------------------------------------------------------------- /tests/modules/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/modules/misc.c -------------------------------------------------------------------------------- /tests/modules/moduleconfigs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/modules/moduleconfigs.c -------------------------------------------------------------------------------- /tests/modules/propagate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/modules/propagate.c -------------------------------------------------------------------------------- /tests/modules/publish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/modules/publish.c -------------------------------------------------------------------------------- /tests/modules/reply.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/modules/reply.c -------------------------------------------------------------------------------- /tests/modules/scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/modules/scan.c -------------------------------------------------------------------------------- /tests/modules/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/modules/stream.c -------------------------------------------------------------------------------- /tests/modules/subcommands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/modules/subcommands.c -------------------------------------------------------------------------------- /tests/modules/test_lazyfree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/modules/test_lazyfree.c -------------------------------------------------------------------------------- /tests/modules/testrdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/modules/testrdb.c -------------------------------------------------------------------------------- /tests/modules/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/modules/timer.c -------------------------------------------------------------------------------- /tests/modules/usercall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/modules/usercall.c -------------------------------------------------------------------------------- /tests/modules/zset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/modules/zset.c -------------------------------------------------------------------------------- /tests/sentinel/run.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/sentinel/run.tcl -------------------------------------------------------------------------------- /tests/sentinel/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | redis_* 2 | sentinel_* 3 | -------------------------------------------------------------------------------- /tests/support/aofmanifest.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/support/aofmanifest.tcl -------------------------------------------------------------------------------- /tests/support/benchmark.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/support/benchmark.tcl -------------------------------------------------------------------------------- /tests/support/cli.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/support/cli.tcl -------------------------------------------------------------------------------- /tests/support/cluster.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/support/cluster.tcl -------------------------------------------------------------------------------- /tests/support/cluster_util.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/support/cluster_util.tcl -------------------------------------------------------------------------------- /tests/support/redis.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/support/redis.tcl -------------------------------------------------------------------------------- /tests/support/server.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/support/server.tcl -------------------------------------------------------------------------------- /tests/support/test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/support/test.tcl -------------------------------------------------------------------------------- /tests/support/tmpfile.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/support/tmpfile.tcl -------------------------------------------------------------------------------- /tests/support/util.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/support/util.tcl -------------------------------------------------------------------------------- /tests/test_helper.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/test_helper.tcl -------------------------------------------------------------------------------- /tests/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /tests/unit/acl-v2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/acl-v2.tcl -------------------------------------------------------------------------------- /tests/unit/acl.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/acl.tcl -------------------------------------------------------------------------------- /tests/unit/aofrw.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/aofrw.tcl -------------------------------------------------------------------------------- /tests/unit/auth.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/auth.tcl -------------------------------------------------------------------------------- /tests/unit/bitfield.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/bitfield.tcl -------------------------------------------------------------------------------- /tests/unit/bitops.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/bitops.tcl -------------------------------------------------------------------------------- /tests/unit/client-eviction.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/client-eviction.tcl -------------------------------------------------------------------------------- /tests/unit/cluster/cli.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/cluster/cli.tcl -------------------------------------------------------------------------------- /tests/unit/cluster/links.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/cluster/links.tcl -------------------------------------------------------------------------------- /tests/unit/cluster/misc.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/cluster/misc.tcl -------------------------------------------------------------------------------- /tests/unit/dump.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/dump.tcl -------------------------------------------------------------------------------- /tests/unit/expire.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/expire.tcl -------------------------------------------------------------------------------- /tests/unit/functions.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/functions.tcl -------------------------------------------------------------------------------- /tests/unit/geo.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/geo.tcl -------------------------------------------------------------------------------- /tests/unit/hyperloglog.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/hyperloglog.tcl -------------------------------------------------------------------------------- /tests/unit/info-command.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/info-command.tcl -------------------------------------------------------------------------------- /tests/unit/info.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/info.tcl -------------------------------------------------------------------------------- /tests/unit/introspection-2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/introspection-2.tcl -------------------------------------------------------------------------------- /tests/unit/introspection.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/introspection.tcl -------------------------------------------------------------------------------- /tests/unit/keyspace.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/keyspace.tcl -------------------------------------------------------------------------------- /tests/unit/latency-monitor.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/latency-monitor.tcl -------------------------------------------------------------------------------- /tests/unit/lazyfree.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/lazyfree.tcl -------------------------------------------------------------------------------- /tests/unit/limits.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/limits.tcl -------------------------------------------------------------------------------- /tests/unit/maxmemory.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/maxmemory.tcl -------------------------------------------------------------------------------- /tests/unit/memefficiency.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/memefficiency.tcl -------------------------------------------------------------------------------- /tests/unit/moduleapi/auth.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/moduleapi/auth.tcl -------------------------------------------------------------------------------- /tests/unit/moduleapi/fork.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/moduleapi/fork.tcl -------------------------------------------------------------------------------- /tests/unit/moduleapi/hash.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/moduleapi/hash.tcl -------------------------------------------------------------------------------- /tests/unit/moduleapi/hooks.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/moduleapi/hooks.tcl -------------------------------------------------------------------------------- /tests/unit/moduleapi/infra.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/moduleapi/infra.tcl -------------------------------------------------------------------------------- /tests/unit/moduleapi/list.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/moduleapi/list.tcl -------------------------------------------------------------------------------- /tests/unit/moduleapi/misc.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/moduleapi/misc.tcl -------------------------------------------------------------------------------- /tests/unit/moduleapi/reply.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/moduleapi/reply.tcl -------------------------------------------------------------------------------- /tests/unit/moduleapi/scan.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/moduleapi/scan.tcl -------------------------------------------------------------------------------- /tests/unit/moduleapi/timer.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/moduleapi/timer.tcl -------------------------------------------------------------------------------- /tests/unit/moduleapi/zset.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/moduleapi/zset.tcl -------------------------------------------------------------------------------- /tests/unit/multi.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/multi.tcl -------------------------------------------------------------------------------- /tests/unit/networking.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/networking.tcl -------------------------------------------------------------------------------- /tests/unit/obuf-limits.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/obuf-limits.tcl -------------------------------------------------------------------------------- /tests/unit/oom-score-adj.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/oom-score-adj.tcl -------------------------------------------------------------------------------- /tests/unit/other.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/other.tcl -------------------------------------------------------------------------------- /tests/unit/pause.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/pause.tcl -------------------------------------------------------------------------------- /tests/unit/printver.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/printver.tcl -------------------------------------------------------------------------------- /tests/unit/protocol.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/protocol.tcl -------------------------------------------------------------------------------- /tests/unit/pubsub.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/pubsub.tcl -------------------------------------------------------------------------------- /tests/unit/pubsubshard.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/pubsubshard.tcl -------------------------------------------------------------------------------- /tests/unit/querybuf.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/querybuf.tcl -------------------------------------------------------------------------------- /tests/unit/quit.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/quit.tcl -------------------------------------------------------------------------------- /tests/unit/replybufsize.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/replybufsize.tcl -------------------------------------------------------------------------------- /tests/unit/scan.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/scan.tcl -------------------------------------------------------------------------------- /tests/unit/scripting.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/scripting.tcl -------------------------------------------------------------------------------- /tests/unit/shutdown.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/shutdown.tcl -------------------------------------------------------------------------------- /tests/unit/slowlog.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/slowlog.tcl -------------------------------------------------------------------------------- /tests/unit/sort.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/sort.tcl -------------------------------------------------------------------------------- /tests/unit/tls.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/tls.tcl -------------------------------------------------------------------------------- /tests/unit/tracking.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/tracking.tcl -------------------------------------------------------------------------------- /tests/unit/type/hash.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/type/hash.tcl -------------------------------------------------------------------------------- /tests/unit/type/incr.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/type/incr.tcl -------------------------------------------------------------------------------- /tests/unit/type/list-2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/type/list-2.tcl -------------------------------------------------------------------------------- /tests/unit/type/list-3.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/type/list-3.tcl -------------------------------------------------------------------------------- /tests/unit/type/list.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/type/list.tcl -------------------------------------------------------------------------------- /tests/unit/type/set.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/type/set.tcl -------------------------------------------------------------------------------- /tests/unit/type/stream.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/type/stream.tcl -------------------------------------------------------------------------------- /tests/unit/type/string.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/type/string.tcl -------------------------------------------------------------------------------- /tests/unit/type/zset.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/type/zset.tcl -------------------------------------------------------------------------------- /tests/unit/violations.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/violations.tcl -------------------------------------------------------------------------------- /tests/unit/wait.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/tests/unit/wait.tcl -------------------------------------------------------------------------------- /utils/build-static-symbols.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/utils/build-static-symbols.tcl -------------------------------------------------------------------------------- /utils/cluster_fail_time.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/utils/cluster_fail_time.tcl -------------------------------------------------------------------------------- /utils/corrupt_rdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/utils/corrupt_rdb.c -------------------------------------------------------------------------------- /utils/create-cluster/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/utils/create-cluster/README -------------------------------------------------------------------------------- /utils/gen-test-certs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/utils/gen-test-certs.sh -------------------------------------------------------------------------------- /utils/generate-command-code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/utils/generate-command-code.py -------------------------------------------------------------------------------- /utils/generate-command-help.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/utils/generate-command-help.rb -------------------------------------------------------------------------------- /utils/hyperloglog/.gitignore: -------------------------------------------------------------------------------- 1 | *.txt 2 | -------------------------------------------------------------------------------- /utils/hyperloglog/hll-err.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/utils/hyperloglog/hll-err.rb -------------------------------------------------------------------------------- /utils/install_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/utils/install_server.sh -------------------------------------------------------------------------------- /utils/lru/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/utils/lru/README -------------------------------------------------------------------------------- /utils/lru/lfu-simulation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/utils/lru/lfu-simulation.c -------------------------------------------------------------------------------- /utils/lru/test-lru.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/utils/lru/test-lru.rb -------------------------------------------------------------------------------- /utils/redis-copy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/utils/redis-copy.rb -------------------------------------------------------------------------------- /utils/redis-sha1.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/utils/redis-sha1.rb -------------------------------------------------------------------------------- /utils/redis_init_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/utils/redis_init_script -------------------------------------------------------------------------------- /utils/redis_init_script.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/utils/redis_init_script.tpl -------------------------------------------------------------------------------- /utils/speed-regression.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/utils/speed-regression.tcl -------------------------------------------------------------------------------- /utils/srandmember/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/utils/srandmember/README.md -------------------------------------------------------------------------------- /utils/srandmember/showdist.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/utils/srandmember/showdist.rb -------------------------------------------------------------------------------- /utils/srandmember/showfreq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/utils/srandmember/showfreq.rb -------------------------------------------------------------------------------- /utils/tracking_collisions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/utils/tracking_collisions.c -------------------------------------------------------------------------------- /utils/whatisdoing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindoo/redis/HEAD/utils/whatisdoing.sh --------------------------------------------------------------------------------