├── .github └── workflows │ ├── ci.yml │ └── daily.yml ├── .gitignore ├── 00-RELEASENOTES ├── BUGS ├── CONTRIBUTING ├── COPYING ├── INSTALL ├── MANIFESTO ├── Makefile ├── README.md ├── TLS.md ├── deps ├── Makefile ├── README.md ├── hiredis │ ├── .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 │ ├── 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-qt.cpp │ │ ├── example-qt.h │ │ ├── example-ssl.c │ │ └── example.c │ ├── fmacros.h │ ├── hiredis.c │ ├── hiredis.h │ ├── hiredis.pc.in │ ├── hiredis_ssl.h │ ├── hiredis_ssl.pc.in │ ├── net.c │ ├── net.h │ ├── read.c │ ├── read.h │ ├── sds.c │ ├── sds.h │ ├── sdsalloc.h │ ├── sockcompat.c │ ├── sockcompat.h │ ├── ssl.c │ ├── test.c │ ├── test.sh │ └── win32.h ├── jemalloc │ ├── .appveyor.yml │ ├── .autom4te.cfg │ ├── .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 │ │ │ │ ├── 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 │ │ │ │ ├── hooks.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 │ │ │ │ ├── rb.h │ │ │ │ ├── rtree.h │ │ │ │ ├── rtree_tsd.h │ │ │ │ ├── size_classes.sh │ │ │ │ ├── smoothstep.h │ │ │ │ ├── smoothstep.sh │ │ │ │ ├── spin.h │ │ │ │ ├── stats.h │ │ │ │ ├── sz.h │ │ │ │ ├── tcache_externs.h │ │ │ │ ├── tcache_inlines.h │ │ │ │ ├── tcache_structs.h │ │ │ │ ├── tcache_types.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 │ │ ├── hooks.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 │ │ ├── stats.c │ │ ├── sz.c │ │ ├── tcache.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 │ │ ├── mallocx.c │ │ ├── mallocx.sh │ │ ├── overflow.c │ │ ├── posix_memalign.c │ │ ├── rallocx.c │ │ ├── sdallocx.c │ │ ├── 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 │ │ └── 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 │ │ ├── bit_util.c │ │ ├── bitmap.c │ │ ├── ckh.c │ │ ├── decay.c │ │ ├── decay.sh │ │ ├── div.c │ │ ├── emitter.c │ │ ├── extent_quantize.c │ │ ├── fork.c │ │ ├── hash.c │ │ ├── hooks.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_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 │ │ ├── size_classes.c │ │ ├── slab.c │ │ ├── smoothstep.c │ │ ├── spin.c │ │ ├── stats.c │ │ ├── stats_print.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 └── update-jemalloc.sh ├── 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 ├── childinfo.c ├── cluster.c ├── cluster.h ├── 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 ├── evict.c ├── expire.c ├── fmacros.h ├── geo.c ├── geo.h ├── geohash.c ├── geohash.h ├── geohash_helper.c ├── geohash_helper.h ├── gopher.c ├── 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 │ ├── gendoc.rb │ ├── helloacl.c │ ├── helloblock.c │ ├── hellocluster.c │ ├── hellodict.c │ ├── hellohook.c │ ├── hellotimer.c │ ├── hellotype.c │ ├── helloworld.c │ └── testmodule.c ├── multi.c ├── networking.c ├── notify.c ├── object.c ├── pmem.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.h ├── redismodule.h ├── release.c ├── replication.c ├── rio.c ├── rio.h ├── scripting.c ├── 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 ├── solarisfixes.h ├── sort.c ├── sparkline.c ├── sparkline.h ├── stream.h ├── syncio.c ├── 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 ├── util.c ├── util.h ├── valgrind.sup ├── version.h ├── ziplist.c ├── ziplist.h ├── zipmap.c ├── zipmap.h ├── zmalloc.c └── zmalloc.h ├── tests ├── assets │ ├── default.conf │ ├── encodings.rdb │ └── hash-zipmap.rdb ├── cluster │ ├── cluster.tcl │ ├── run.tcl │ ├── tests │ │ ├── 00-base.tcl │ │ ├── 01-faildet.tcl │ │ ├── 02-failover.tcl │ │ ├── 03-failover-loop.tcl │ │ ├── 04-resharding.tcl │ │ ├── 05-slave-selection.tcl │ │ ├── 06-slave-stop-cond.tcl │ │ ├── 07-replica-migration.tcl │ │ ├── 08-update-msg.tcl │ │ ├── 09-pubsub.tcl │ │ ├── 10-manual-failover.tcl │ │ ├── 11-manual-takeover.tcl │ │ ├── 12-replica-migration-2.tcl │ │ ├── 13-no-failover-option.tcl │ │ ├── 14-consistency-check.tcl │ │ ├── 15-cluster-slots.tcl │ │ ├── helpers │ │ │ └── onlydots.tcl │ │ └── includes │ │ │ └── init-tests.tcl │ └── tmp │ │ └── .gitignore ├── helpers │ ├── bg_block_op.tcl │ ├── bg_complex_data.tcl │ └── gen_write_load.tcl ├── instances.tcl ├── integration │ ├── aof-race.tcl │ ├── aof.tcl │ ├── block-repl.tcl │ ├── convert-zipmap-hash-on-load.tcl │ ├── logging.tcl │ ├── psync2-pingoff.tcl │ ├── psync2-reg.tcl │ ├── psync2.tcl │ ├── rdb.tcl │ ├── redis-cli.tcl │ ├── replication-2.tcl │ ├── replication-3.tcl │ ├── replication-4.tcl │ ├── replication-psync.tcl │ └── replication.tcl ├── modules │ ├── Makefile │ ├── auth.c │ ├── blockonkeys.c │ ├── commandfilter.c │ ├── datatype.c │ ├── fork.c │ ├── hooks.c │ ├── infotest.c │ ├── misc.c │ ├── propagate.c │ ├── scan.c │ └── testrdb.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 │ │ └── includes │ │ │ └── init-tests.tcl │ └── tmp │ │ └── .gitignore ├── support │ ├── cli.tcl │ ├── cluster.tcl │ ├── redis.tcl │ ├── server.tcl │ ├── test.tcl │ ├── tmpfile.tcl │ └── util.tcl ├── test_helper.tcl ├── tmp │ └── .gitignore └── unit │ ├── acl.tcl │ ├── aofrw.tcl │ ├── auth.tcl │ ├── bitfield.tcl │ ├── bitops.tcl │ ├── dump.tcl │ ├── expire.tcl │ ├── geo.tcl │ ├── hyperloglog.tcl │ ├── introspection-2.tcl │ ├── introspection.tcl │ ├── keyspace.tcl │ ├── latency-monitor.tcl │ ├── lazyfree.tcl │ ├── limits.tcl │ ├── maxmemory.tcl │ ├── memefficiency.tcl │ ├── moduleapi │ ├── auth.tcl │ ├── blockonkeys.tcl │ ├── commandfilter.tcl │ ├── datatype.tcl │ ├── fork.tcl │ ├── hooks.tcl │ ├── infotest.tcl │ ├── misc.tcl │ ├── propagate.tcl │ ├── scan.tcl │ └── testrdb.tcl │ ├── multi.tcl │ ├── obuf-limits.tcl │ ├── other.tcl │ ├── pendingquerybuf.tcl │ ├── printver.tcl │ ├── protocol.tcl │ ├── pubsub.tcl │ ├── quit.tcl │ ├── scan.tcl │ ├── scripting.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 │ └── 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-help.rb ├── graphs └── commits-over-time │ ├── README.md │ └── genhtml.tcl ├── hashtable ├── README └── rehashing.c ├── 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 /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/daily.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/.github/workflows/daily.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/.gitignore -------------------------------------------------------------------------------- /00-RELEASENOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/00-RELEASENOTES -------------------------------------------------------------------------------- /BUGS: -------------------------------------------------------------------------------- 1 | Please check https://github.com/antirez/redis/issues 2 | -------------------------------------------------------------------------------- /CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/CONTRIBUTING -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/COPYING -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- 1 | See README 2 | -------------------------------------------------------------------------------- /MANIFESTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/MANIFESTO -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/README.md -------------------------------------------------------------------------------- /TLS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/TLS.md -------------------------------------------------------------------------------- /deps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/Makefile -------------------------------------------------------------------------------- /deps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/README.md -------------------------------------------------------------------------------- /deps/hiredis/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/.gitignore -------------------------------------------------------------------------------- /deps/hiredis/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/.travis.yml -------------------------------------------------------------------------------- /deps/hiredis/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/CHANGELOG.md -------------------------------------------------------------------------------- /deps/hiredis/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/CMakeLists.txt -------------------------------------------------------------------------------- /deps/hiredis/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/COPYING -------------------------------------------------------------------------------- /deps/hiredis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/Makefile -------------------------------------------------------------------------------- /deps/hiredis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/README.md -------------------------------------------------------------------------------- /deps/hiredis/adapters/ae.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/adapters/ae.h -------------------------------------------------------------------------------- /deps/hiredis/adapters/glib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/adapters/glib.h -------------------------------------------------------------------------------- /deps/hiredis/adapters/ivykis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/adapters/ivykis.h -------------------------------------------------------------------------------- /deps/hiredis/adapters/libev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/adapters/libev.h -------------------------------------------------------------------------------- /deps/hiredis/adapters/libevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/adapters/libevent.h -------------------------------------------------------------------------------- /deps/hiredis/adapters/libuv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/adapters/libuv.h -------------------------------------------------------------------------------- /deps/hiredis/adapters/macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/adapters/macosx.h -------------------------------------------------------------------------------- /deps/hiredis/adapters/qt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/adapters/qt.h -------------------------------------------------------------------------------- /deps/hiredis/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/appveyor.yml -------------------------------------------------------------------------------- /deps/hiredis/async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/async.c -------------------------------------------------------------------------------- /deps/hiredis/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/async.h -------------------------------------------------------------------------------- /deps/hiredis/async_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/async_private.h -------------------------------------------------------------------------------- /deps/hiredis/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/dict.c -------------------------------------------------------------------------------- /deps/hiredis/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/dict.h -------------------------------------------------------------------------------- /deps/hiredis/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/examples/CMakeLists.txt -------------------------------------------------------------------------------- /deps/hiredis/examples/example-ae.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/examples/example-ae.c -------------------------------------------------------------------------------- /deps/hiredis/examples/example-glib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/examples/example-glib.c -------------------------------------------------------------------------------- /deps/hiredis/examples/example-ivykis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/examples/example-ivykis.c -------------------------------------------------------------------------------- /deps/hiredis/examples/example-libev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/examples/example-libev.c -------------------------------------------------------------------------------- /deps/hiredis/examples/example-libevent-ssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/examples/example-libevent-ssl.c -------------------------------------------------------------------------------- /deps/hiredis/examples/example-libevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/examples/example-libevent.c -------------------------------------------------------------------------------- /deps/hiredis/examples/example-libuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/examples/example-libuv.c -------------------------------------------------------------------------------- /deps/hiredis/examples/example-macosx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/examples/example-macosx.c -------------------------------------------------------------------------------- /deps/hiredis/examples/example-qt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/examples/example-qt.cpp -------------------------------------------------------------------------------- /deps/hiredis/examples/example-qt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/examples/example-qt.h -------------------------------------------------------------------------------- /deps/hiredis/examples/example-ssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/examples/example-ssl.c -------------------------------------------------------------------------------- /deps/hiredis/examples/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/examples/example.c -------------------------------------------------------------------------------- /deps/hiredis/fmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/fmacros.h -------------------------------------------------------------------------------- /deps/hiredis/hiredis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/hiredis.c -------------------------------------------------------------------------------- /deps/hiredis/hiredis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/hiredis.h -------------------------------------------------------------------------------- /deps/hiredis/hiredis.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/hiredis.pc.in -------------------------------------------------------------------------------- /deps/hiredis/hiredis_ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/hiredis_ssl.h -------------------------------------------------------------------------------- /deps/hiredis/hiredis_ssl.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/hiredis_ssl.pc.in -------------------------------------------------------------------------------- /deps/hiredis/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/net.c -------------------------------------------------------------------------------- /deps/hiredis/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/net.h -------------------------------------------------------------------------------- /deps/hiredis/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/read.c -------------------------------------------------------------------------------- /deps/hiredis/read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/read.h -------------------------------------------------------------------------------- /deps/hiredis/sds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/sds.c -------------------------------------------------------------------------------- /deps/hiredis/sds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/sds.h -------------------------------------------------------------------------------- /deps/hiredis/sdsalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/sdsalloc.h -------------------------------------------------------------------------------- /deps/hiredis/sockcompat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/sockcompat.c -------------------------------------------------------------------------------- /deps/hiredis/sockcompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/sockcompat.h -------------------------------------------------------------------------------- /deps/hiredis/ssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/ssl.c -------------------------------------------------------------------------------- /deps/hiredis/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/test.c -------------------------------------------------------------------------------- /deps/hiredis/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/test.sh -------------------------------------------------------------------------------- /deps/hiredis/win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/hiredis/win32.h -------------------------------------------------------------------------------- /deps/jemalloc/.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/.appveyor.yml -------------------------------------------------------------------------------- /deps/jemalloc/.autom4te.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/.autom4te.cfg -------------------------------------------------------------------------------- /deps/jemalloc/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /deps/jemalloc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/.gitignore -------------------------------------------------------------------------------- /deps/jemalloc/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/.travis.yml -------------------------------------------------------------------------------- /deps/jemalloc/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/COPYING -------------------------------------------------------------------------------- /deps/jemalloc/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/ChangeLog -------------------------------------------------------------------------------- /deps/jemalloc/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/INSTALL.md -------------------------------------------------------------------------------- /deps/jemalloc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/Makefile.in -------------------------------------------------------------------------------- /deps/jemalloc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/README -------------------------------------------------------------------------------- /deps/jemalloc/TUNING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/TUNING.md -------------------------------------------------------------------------------- /deps/jemalloc/VERSION: -------------------------------------------------------------------------------- 1 | 5.1.0-0-g0 2 | -------------------------------------------------------------------------------- /deps/jemalloc/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/autogen.sh -------------------------------------------------------------------------------- /deps/jemalloc/bin/jemalloc-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/bin/jemalloc-config.in -------------------------------------------------------------------------------- /deps/jemalloc/bin/jemalloc.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/bin/jemalloc.sh.in -------------------------------------------------------------------------------- /deps/jemalloc/bin/jeprof.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/bin/jeprof.in -------------------------------------------------------------------------------- /deps/jemalloc/build-aux/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/build-aux/config.guess -------------------------------------------------------------------------------- /deps/jemalloc/build-aux/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/build-aux/config.sub -------------------------------------------------------------------------------- /deps/jemalloc/build-aux/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/build-aux/install-sh -------------------------------------------------------------------------------- /deps/jemalloc/config.stamp.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/jemalloc/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/configure -------------------------------------------------------------------------------- /deps/jemalloc/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/configure.ac -------------------------------------------------------------------------------- /deps/jemalloc/doc/html.xsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/doc/html.xsl.in -------------------------------------------------------------------------------- /deps/jemalloc/doc/jemalloc.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/doc/jemalloc.xml.in -------------------------------------------------------------------------------- /deps/jemalloc/doc/manpages.xsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/doc/manpages.xsl.in -------------------------------------------------------------------------------- /deps/jemalloc/doc/stylesheet.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/doc/stylesheet.xsl -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/arena_externs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/arena_externs.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/arena_inlines_a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/arena_inlines_a.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/arena_inlines_b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/arena_inlines_b.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/arena_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/arena_stats.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/arena_structs_a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/arena_structs_a.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/arena_structs_b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/arena_structs_b.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/arena_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/arena_types.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/assert.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/atomic.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/atomic_c11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/atomic_c11.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/atomic_gcc_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/atomic_gcc_atomic.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/atomic_gcc_sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/atomic_gcc_sync.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/atomic_msvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/atomic_msvc.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/background_thread_externs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/background_thread_externs.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/background_thread_inlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/background_thread_inlines.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/background_thread_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/background_thread_structs.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/base_externs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/base_externs.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/base_inlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/base_inlines.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/base_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/base_structs.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/base_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/base_types.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/bin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/bin.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/bin_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/bin_stats.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/bit_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/bit_util.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/bitmap.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/cache_bin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/cache_bin.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/ckh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/ckh.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/ctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/ctl.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/div.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/div.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/emitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/emitter.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/extent_dss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/extent_dss.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/extent_externs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/extent_externs.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/extent_inlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/extent_inlines.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/extent_mmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/extent_mmap.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/extent_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/extent_structs.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/extent_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/extent_types.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/hash.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/hooks.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/jemalloc_internal_decls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/jemalloc_internal_decls.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/jemalloc_internal_defs.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/jemalloc_internal_defs.h.in -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/jemalloc_internal_externs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/jemalloc_internal_externs.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/jemalloc_internal_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/jemalloc_internal_includes.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/jemalloc_internal_inlines_a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/jemalloc_internal_inlines_a.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/jemalloc_internal_inlines_b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/jemalloc_internal_inlines_b.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/jemalloc_internal_inlines_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/jemalloc_internal_inlines_c.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/jemalloc_internal_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/jemalloc_internal_macros.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/jemalloc_internal_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/jemalloc_internal_types.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/jemalloc_preamble.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/jemalloc_preamble.h.in -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/large_externs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/large_externs.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/log.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/malloc_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/malloc_io.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/mutex.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/mutex_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/mutex_pool.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/mutex_prof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/mutex_prof.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/nstime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/nstime.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/pages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/pages.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/ph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/ph.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/private_namespace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/private_namespace.sh -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/private_symbols.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/private_symbols.sh -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/prng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/prng.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/prof_externs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/prof_externs.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/prof_inlines_a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/prof_inlines_a.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/prof_inlines_b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/prof_inlines_b.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/prof_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/prof_structs.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/prof_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/prof_types.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/public_namespace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/public_namespace.sh -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/public_unnamespace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/public_unnamespace.sh -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/ql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/ql.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/qr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/qr.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/rb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/rb.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/rtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/rtree.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/rtree_tsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/rtree_tsd.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/size_classes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/size_classes.sh -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/smoothstep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/smoothstep.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/smoothstep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/smoothstep.sh -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/spin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/spin.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/stats.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/sz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/sz.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/tcache_externs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/tcache_externs.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/tcache_inlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/tcache_inlines.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/tcache_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/tcache_structs.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/tcache_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/tcache_types.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/ticker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/ticker.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/tsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/tsd.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/tsd_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/tsd_generic.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/tsd_malloc_thread_cleanup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/tsd_malloc_thread_cleanup.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/tsd_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/tsd_tls.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/tsd_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/tsd_types.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/tsd_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/tsd_win.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/util.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/witness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/internal/witness.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/jemalloc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/jemalloc.sh -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/jemalloc_defs.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/jemalloc_defs.h.in -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/jemalloc_macros.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/jemalloc_macros.h.in -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/jemalloc_mangle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/jemalloc_mangle.sh -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/jemalloc_protos.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/jemalloc_protos.h.in -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/jemalloc_rename.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/jemalloc_rename.sh -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/jemalloc_typedefs.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/jemalloc/jemalloc_typedefs.h.in -------------------------------------------------------------------------------- /deps/jemalloc/include/msvc_compat/C99/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/msvc_compat/C99/stdbool.h -------------------------------------------------------------------------------- /deps/jemalloc/include/msvc_compat/C99/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/msvc_compat/C99/stdint.h -------------------------------------------------------------------------------- /deps/jemalloc/include/msvc_compat/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/msvc_compat/strings.h -------------------------------------------------------------------------------- /deps/jemalloc/include/msvc_compat/windows_extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/include/msvc_compat/windows_extra.h -------------------------------------------------------------------------------- /deps/jemalloc/jemalloc.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/jemalloc.pc.in -------------------------------------------------------------------------------- /deps/jemalloc/m4/ax_cxx_compile_stdcxx.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/m4/ax_cxx_compile_stdcxx.m4 -------------------------------------------------------------------------------- /deps/jemalloc/msvc/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/msvc/ReadMe.txt -------------------------------------------------------------------------------- /deps/jemalloc/msvc/jemalloc_vc2015.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/msvc/jemalloc_vc2015.sln -------------------------------------------------------------------------------- /deps/jemalloc/msvc/jemalloc_vc2017.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/msvc/jemalloc_vc2017.sln -------------------------------------------------------------------------------- /deps/jemalloc/msvc/projects/vc2015/jemalloc/jemalloc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/msvc/projects/vc2015/jemalloc/jemalloc.vcxproj -------------------------------------------------------------------------------- /deps/jemalloc/msvc/projects/vc2015/jemalloc/jemalloc.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/msvc/projects/vc2015/jemalloc/jemalloc.vcxproj.filters -------------------------------------------------------------------------------- /deps/jemalloc/msvc/projects/vc2015/test_threads/test_threads.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/msvc/projects/vc2015/test_threads/test_threads.vcxproj -------------------------------------------------------------------------------- /deps/jemalloc/msvc/projects/vc2015/test_threads/test_threads.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/msvc/projects/vc2015/test_threads/test_threads.vcxproj.filters -------------------------------------------------------------------------------- /deps/jemalloc/msvc/projects/vc2017/jemalloc/jemalloc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/msvc/projects/vc2017/jemalloc/jemalloc.vcxproj -------------------------------------------------------------------------------- /deps/jemalloc/msvc/projects/vc2017/jemalloc/jemalloc.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/msvc/projects/vc2017/jemalloc/jemalloc.vcxproj.filters -------------------------------------------------------------------------------- /deps/jemalloc/msvc/projects/vc2017/test_threads/test_threads.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/msvc/projects/vc2017/test_threads/test_threads.vcxproj -------------------------------------------------------------------------------- /deps/jemalloc/msvc/projects/vc2017/test_threads/test_threads.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/msvc/projects/vc2017/test_threads/test_threads.vcxproj.filters -------------------------------------------------------------------------------- /deps/jemalloc/msvc/test_threads/test_threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/msvc/test_threads/test_threads.cpp -------------------------------------------------------------------------------- /deps/jemalloc/msvc/test_threads/test_threads.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | int test_threads(); 4 | -------------------------------------------------------------------------------- /deps/jemalloc/msvc/test_threads/test_threads_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/msvc/test_threads/test_threads_main.cpp -------------------------------------------------------------------------------- /deps/jemalloc/run_tests.sh: -------------------------------------------------------------------------------- 1 | $(dirname "$)")/scripts/gen_run_tests.py | bash 2 | -------------------------------------------------------------------------------- /deps/jemalloc/scripts/gen_run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/scripts/gen_run_tests.py -------------------------------------------------------------------------------- /deps/jemalloc/scripts/gen_travis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/scripts/gen_travis.py -------------------------------------------------------------------------------- /deps/jemalloc/src/arena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/src/arena.c -------------------------------------------------------------------------------- /deps/jemalloc/src/background_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/src/background_thread.c -------------------------------------------------------------------------------- /deps/jemalloc/src/base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/src/base.c -------------------------------------------------------------------------------- /deps/jemalloc/src/bin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/src/bin.c -------------------------------------------------------------------------------- /deps/jemalloc/src/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/src/bitmap.c -------------------------------------------------------------------------------- /deps/jemalloc/src/ckh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/src/ckh.c -------------------------------------------------------------------------------- /deps/jemalloc/src/ctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/src/ctl.c -------------------------------------------------------------------------------- /deps/jemalloc/src/div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/src/div.c -------------------------------------------------------------------------------- /deps/jemalloc/src/extent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/src/extent.c -------------------------------------------------------------------------------- /deps/jemalloc/src/extent_dss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/src/extent_dss.c -------------------------------------------------------------------------------- /deps/jemalloc/src/extent_mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/src/extent_mmap.c -------------------------------------------------------------------------------- /deps/jemalloc/src/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/src/hash.c -------------------------------------------------------------------------------- /deps/jemalloc/src/hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/src/hooks.c -------------------------------------------------------------------------------- /deps/jemalloc/src/jemalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/src/jemalloc.c -------------------------------------------------------------------------------- /deps/jemalloc/src/jemalloc_cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/src/jemalloc_cpp.cpp -------------------------------------------------------------------------------- /deps/jemalloc/src/large.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/src/large.c -------------------------------------------------------------------------------- /deps/jemalloc/src/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/src/log.c -------------------------------------------------------------------------------- /deps/jemalloc/src/malloc_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/src/malloc_io.c -------------------------------------------------------------------------------- /deps/jemalloc/src/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/src/mutex.c -------------------------------------------------------------------------------- /deps/jemalloc/src/mutex_pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/src/mutex_pool.c -------------------------------------------------------------------------------- /deps/jemalloc/src/nstime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/src/nstime.c -------------------------------------------------------------------------------- /deps/jemalloc/src/pages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/src/pages.c -------------------------------------------------------------------------------- /deps/jemalloc/src/prng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/src/prng.c -------------------------------------------------------------------------------- /deps/jemalloc/src/prof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/src/prof.c -------------------------------------------------------------------------------- /deps/jemalloc/src/rtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/src/rtree.c -------------------------------------------------------------------------------- /deps/jemalloc/src/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/src/stats.c -------------------------------------------------------------------------------- /deps/jemalloc/src/sz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/src/sz.c -------------------------------------------------------------------------------- /deps/jemalloc/src/tcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/src/tcache.c -------------------------------------------------------------------------------- /deps/jemalloc/src/ticker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/src/ticker.c -------------------------------------------------------------------------------- /deps/jemalloc/src/tsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/src/tsd.c -------------------------------------------------------------------------------- /deps/jemalloc/src/witness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/src/witness.c -------------------------------------------------------------------------------- /deps/jemalloc/src/zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/src/zone.c -------------------------------------------------------------------------------- /deps/jemalloc/test/include/test/SFMT-alti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/include/test/SFMT-alti.h -------------------------------------------------------------------------------- /deps/jemalloc/test/include/test/SFMT-params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/include/test/SFMT-params.h -------------------------------------------------------------------------------- /deps/jemalloc/test/include/test/SFMT-params11213.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/include/test/SFMT-params11213.h -------------------------------------------------------------------------------- /deps/jemalloc/test/include/test/SFMT-params1279.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/include/test/SFMT-params1279.h -------------------------------------------------------------------------------- /deps/jemalloc/test/include/test/SFMT-params132049.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/include/test/SFMT-params132049.h -------------------------------------------------------------------------------- /deps/jemalloc/test/include/test/SFMT-params19937.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/include/test/SFMT-params19937.h -------------------------------------------------------------------------------- /deps/jemalloc/test/include/test/SFMT-params216091.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/include/test/SFMT-params216091.h -------------------------------------------------------------------------------- /deps/jemalloc/test/include/test/SFMT-params2281.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/include/test/SFMT-params2281.h -------------------------------------------------------------------------------- /deps/jemalloc/test/include/test/SFMT-params4253.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/include/test/SFMT-params4253.h -------------------------------------------------------------------------------- /deps/jemalloc/test/include/test/SFMT-params44497.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/include/test/SFMT-params44497.h -------------------------------------------------------------------------------- /deps/jemalloc/test/include/test/SFMT-params607.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/include/test/SFMT-params607.h -------------------------------------------------------------------------------- /deps/jemalloc/test/include/test/SFMT-params86243.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/include/test/SFMT-params86243.h -------------------------------------------------------------------------------- /deps/jemalloc/test/include/test/SFMT-sse2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/include/test/SFMT-sse2.h -------------------------------------------------------------------------------- /deps/jemalloc/test/include/test/SFMT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/include/test/SFMT.h -------------------------------------------------------------------------------- /deps/jemalloc/test/include/test/btalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/include/test/btalloc.h -------------------------------------------------------------------------------- /deps/jemalloc/test/include/test/extent_hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/include/test/extent_hooks.h -------------------------------------------------------------------------------- /deps/jemalloc/test/include/test/jemalloc_test.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/include/test/jemalloc_test.h.in -------------------------------------------------------------------------------- /deps/jemalloc/test/include/test/jemalloc_test_defs.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/include/test/jemalloc_test_defs.h.in -------------------------------------------------------------------------------- /deps/jemalloc/test/include/test/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/include/test/math.h -------------------------------------------------------------------------------- /deps/jemalloc/test/include/test/mq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/include/test/mq.h -------------------------------------------------------------------------------- /deps/jemalloc/test/include/test/mtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/include/test/mtx.h -------------------------------------------------------------------------------- /deps/jemalloc/test/include/test/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/include/test/test.h -------------------------------------------------------------------------------- /deps/jemalloc/test/include/test/thd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/include/test/thd.h -------------------------------------------------------------------------------- /deps/jemalloc/test/include/test/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/include/test/timer.h -------------------------------------------------------------------------------- /deps/jemalloc/test/integration/MALLOCX_ARENA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/integration/MALLOCX_ARENA.c -------------------------------------------------------------------------------- /deps/jemalloc/test/integration/aligned_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/integration/aligned_alloc.c -------------------------------------------------------------------------------- /deps/jemalloc/test/integration/allocated.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/integration/allocated.c -------------------------------------------------------------------------------- /deps/jemalloc/test/integration/cpp/basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/integration/cpp/basic.cpp -------------------------------------------------------------------------------- /deps/jemalloc/test/integration/extent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/integration/extent.c -------------------------------------------------------------------------------- /deps/jemalloc/test/integration/extent.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | if [ "x${enable_fill}" = "x1" ] ; then 4 | export MALLOC_CONF="junk:false" 5 | fi 6 | -------------------------------------------------------------------------------- /deps/jemalloc/test/integration/mallocx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/integration/mallocx.c -------------------------------------------------------------------------------- /deps/jemalloc/test/integration/mallocx.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | if [ "x${enable_fill}" = "x1" ] ; then 4 | export MALLOC_CONF="junk:false" 5 | fi 6 | -------------------------------------------------------------------------------- /deps/jemalloc/test/integration/overflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/integration/overflow.c -------------------------------------------------------------------------------- /deps/jemalloc/test/integration/posix_memalign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/integration/posix_memalign.c -------------------------------------------------------------------------------- /deps/jemalloc/test/integration/rallocx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/integration/rallocx.c -------------------------------------------------------------------------------- /deps/jemalloc/test/integration/sdallocx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/integration/sdallocx.c -------------------------------------------------------------------------------- /deps/jemalloc/test/integration/thread_arena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/integration/thread_arena.c -------------------------------------------------------------------------------- /deps/jemalloc/test/integration/thread_tcache_enabled.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/integration/thread_tcache_enabled.c -------------------------------------------------------------------------------- /deps/jemalloc/test/integration/xallocx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/integration/xallocx.c -------------------------------------------------------------------------------- /deps/jemalloc/test/integration/xallocx.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | if [ "x${enable_fill}" = "x1" ] ; then 4 | export MALLOC_CONF="junk:false" 5 | fi 6 | -------------------------------------------------------------------------------- /deps/jemalloc/test/src/SFMT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/src/SFMT.c -------------------------------------------------------------------------------- /deps/jemalloc/test/src/btalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/src/btalloc.c -------------------------------------------------------------------------------- /deps/jemalloc/test/src/btalloc_0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/src/btalloc_0.c -------------------------------------------------------------------------------- /deps/jemalloc/test/src/btalloc_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/src/btalloc_1.c -------------------------------------------------------------------------------- /deps/jemalloc/test/src/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/src/math.c -------------------------------------------------------------------------------- /deps/jemalloc/test/src/mq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/src/mq.c -------------------------------------------------------------------------------- /deps/jemalloc/test/src/mtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/src/mtx.c -------------------------------------------------------------------------------- /deps/jemalloc/test/src/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/src/test.c -------------------------------------------------------------------------------- /deps/jemalloc/test/src/thd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/src/thd.c -------------------------------------------------------------------------------- /deps/jemalloc/test/src/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/src/timer.c -------------------------------------------------------------------------------- /deps/jemalloc/test/stress/microbench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/stress/microbench.c -------------------------------------------------------------------------------- /deps/jemalloc/test/test.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/test.sh.in -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/SFMT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/SFMT.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/a0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/a0.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/arena_reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/arena_reset.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/arena_reset_prof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/arena_reset_prof.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/arena_reset_prof.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/arena_reset_prof.sh -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/atomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/atomic.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/background_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/background_thread.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/background_thread_enable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/background_thread_enable.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/base.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/bit_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/bit_util.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/bitmap.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/ckh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/ckh.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/decay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/decay.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/decay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/decay.sh -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/div.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/emitter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/emitter.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/extent_quantize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/extent_quantize.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/fork.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/hash.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/hooks.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/junk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/junk.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/junk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/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_alloc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/junk_alloc.sh -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/junk_free.c: -------------------------------------------------------------------------------- 1 | #include "junk.c" 2 | -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/junk_free.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/junk_free.sh -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/log.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/mallctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/mallctl.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/malloc_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/malloc_io.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/math.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/mq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/mq.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/mtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/mtx.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/nstime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/nstime.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/pack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/pack.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/pack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/pack.sh -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/pages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/pages.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/ph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/ph.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/prng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/prng.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/prof_accum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/prof_accum.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/prof_accum.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/prof_accum.sh -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/prof_active.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/prof_active.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/prof_active.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/prof_active.sh -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/prof_gdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/prof_gdump.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/prof_gdump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/prof_gdump.sh -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/prof_idump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/prof_idump.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/prof_idump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/prof_idump.sh -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/prof_reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/prof_reset.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/prof_reset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/prof_reset.sh -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/prof_tctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/prof_tctx.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/prof_tctx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/prof_tctx.sh -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/prof_thread_name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/prof_thread_name.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/prof_thread_name.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/prof_thread_name.sh -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/ql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/ql.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/qr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/qr.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/rb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/rb.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/retained.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/retained.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/rtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/rtree.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/size_classes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/size_classes.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/slab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/slab.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/smoothstep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/smoothstep.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/spin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/spin.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/stats.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/stats_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/stats_print.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/ticker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/ticker.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/tsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/tsd.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/witness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/witness.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/zero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/jemalloc/test/unit/zero.c -------------------------------------------------------------------------------- /deps/jemalloc/test/unit/zero.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/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/pmem/redis/HEAD/deps/linenoise/Makefile -------------------------------------------------------------------------------- /deps/linenoise/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/linenoise/README.markdown -------------------------------------------------------------------------------- /deps/linenoise/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/linenoise/example.c -------------------------------------------------------------------------------- /deps/linenoise/linenoise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/linenoise/linenoise.c -------------------------------------------------------------------------------- /deps/linenoise/linenoise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/linenoise/linenoise.h -------------------------------------------------------------------------------- /deps/lua/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/COPYRIGHT -------------------------------------------------------------------------------- /deps/lua/HISTORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/HISTORY -------------------------------------------------------------------------------- /deps/lua/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/INSTALL -------------------------------------------------------------------------------- /deps/lua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/Makefile -------------------------------------------------------------------------------- /deps/lua/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/README -------------------------------------------------------------------------------- /deps/lua/doc/contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/doc/contents.html -------------------------------------------------------------------------------- /deps/lua/doc/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/doc/cover.png -------------------------------------------------------------------------------- /deps/lua/doc/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/doc/logo.gif -------------------------------------------------------------------------------- /deps/lua/doc/lua.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/doc/lua.1 -------------------------------------------------------------------------------- /deps/lua/doc/lua.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/doc/lua.css -------------------------------------------------------------------------------- /deps/lua/doc/lua.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/doc/lua.html -------------------------------------------------------------------------------- /deps/lua/doc/luac.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/doc/luac.1 -------------------------------------------------------------------------------- /deps/lua/doc/luac.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/doc/luac.html -------------------------------------------------------------------------------- /deps/lua/doc/manual.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/doc/manual.css -------------------------------------------------------------------------------- /deps/lua/doc/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/doc/manual.html -------------------------------------------------------------------------------- /deps/lua/doc/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/doc/readme.html -------------------------------------------------------------------------------- /deps/lua/etc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/etc/Makefile -------------------------------------------------------------------------------- /deps/lua/etc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/etc/README -------------------------------------------------------------------------------- /deps/lua/etc/all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/etc/all.c -------------------------------------------------------------------------------- /deps/lua/etc/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/etc/lua.hpp -------------------------------------------------------------------------------- /deps/lua/etc/lua.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/etc/lua.ico -------------------------------------------------------------------------------- /deps/lua/etc/lua.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/etc/lua.pc -------------------------------------------------------------------------------- /deps/lua/etc/luavs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/etc/luavs.bat -------------------------------------------------------------------------------- /deps/lua/etc/min.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/etc/min.c -------------------------------------------------------------------------------- /deps/lua/etc/noparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/etc/noparser.c -------------------------------------------------------------------------------- /deps/lua/etc/strict.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/etc/strict.lua -------------------------------------------------------------------------------- /deps/lua/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/Makefile -------------------------------------------------------------------------------- /deps/lua/src/fpconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/fpconv.c -------------------------------------------------------------------------------- /deps/lua/src/fpconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/fpconv.h -------------------------------------------------------------------------------- /deps/lua/src/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/lapi.c -------------------------------------------------------------------------------- /deps/lua/src/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/lapi.h -------------------------------------------------------------------------------- /deps/lua/src/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/lauxlib.c -------------------------------------------------------------------------------- /deps/lua/src/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/lauxlib.h -------------------------------------------------------------------------------- /deps/lua/src/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/lbaselib.c -------------------------------------------------------------------------------- /deps/lua/src/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/lcode.c -------------------------------------------------------------------------------- /deps/lua/src/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/lcode.h -------------------------------------------------------------------------------- /deps/lua/src/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/ldblib.c -------------------------------------------------------------------------------- /deps/lua/src/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/ldebug.c -------------------------------------------------------------------------------- /deps/lua/src/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/ldebug.h -------------------------------------------------------------------------------- /deps/lua/src/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/ldo.c -------------------------------------------------------------------------------- /deps/lua/src/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/ldo.h -------------------------------------------------------------------------------- /deps/lua/src/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/ldump.c -------------------------------------------------------------------------------- /deps/lua/src/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/lfunc.c -------------------------------------------------------------------------------- /deps/lua/src/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/lfunc.h -------------------------------------------------------------------------------- /deps/lua/src/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/lgc.c -------------------------------------------------------------------------------- /deps/lua/src/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/lgc.h -------------------------------------------------------------------------------- /deps/lua/src/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/linit.c -------------------------------------------------------------------------------- /deps/lua/src/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/liolib.c -------------------------------------------------------------------------------- /deps/lua/src/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/llex.c -------------------------------------------------------------------------------- /deps/lua/src/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/llex.h -------------------------------------------------------------------------------- /deps/lua/src/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/llimits.h -------------------------------------------------------------------------------- /deps/lua/src/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/lmathlib.c -------------------------------------------------------------------------------- /deps/lua/src/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/lmem.c -------------------------------------------------------------------------------- /deps/lua/src/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/lmem.h -------------------------------------------------------------------------------- /deps/lua/src/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/loadlib.c -------------------------------------------------------------------------------- /deps/lua/src/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/lobject.c -------------------------------------------------------------------------------- /deps/lua/src/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/lobject.h -------------------------------------------------------------------------------- /deps/lua/src/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/lopcodes.c -------------------------------------------------------------------------------- /deps/lua/src/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/lopcodes.h -------------------------------------------------------------------------------- /deps/lua/src/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/loslib.c -------------------------------------------------------------------------------- /deps/lua/src/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/lparser.c -------------------------------------------------------------------------------- /deps/lua/src/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/lparser.h -------------------------------------------------------------------------------- /deps/lua/src/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/lstate.c -------------------------------------------------------------------------------- /deps/lua/src/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/lstate.h -------------------------------------------------------------------------------- /deps/lua/src/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/lstring.c -------------------------------------------------------------------------------- /deps/lua/src/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/lstring.h -------------------------------------------------------------------------------- /deps/lua/src/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/lstrlib.c -------------------------------------------------------------------------------- /deps/lua/src/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/ltable.c -------------------------------------------------------------------------------- /deps/lua/src/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/ltable.h -------------------------------------------------------------------------------- /deps/lua/src/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/ltablib.c -------------------------------------------------------------------------------- /deps/lua/src/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/ltm.c -------------------------------------------------------------------------------- /deps/lua/src/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/ltm.h -------------------------------------------------------------------------------- /deps/lua/src/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/lua.c -------------------------------------------------------------------------------- /deps/lua/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/lua.h -------------------------------------------------------------------------------- /deps/lua/src/lua_bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/lua_bit.c -------------------------------------------------------------------------------- /deps/lua/src/lua_cjson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/lua_cjson.c -------------------------------------------------------------------------------- /deps/lua/src/lua_cmsgpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/lua_cmsgpack.c -------------------------------------------------------------------------------- /deps/lua/src/lua_struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/lua_struct.c -------------------------------------------------------------------------------- /deps/lua/src/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/luac.c -------------------------------------------------------------------------------- /deps/lua/src/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/luaconf.h -------------------------------------------------------------------------------- /deps/lua/src/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/lualib.h -------------------------------------------------------------------------------- /deps/lua/src/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/lundump.c -------------------------------------------------------------------------------- /deps/lua/src/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/lundump.h -------------------------------------------------------------------------------- /deps/lua/src/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/lvm.c -------------------------------------------------------------------------------- /deps/lua/src/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/lvm.h -------------------------------------------------------------------------------- /deps/lua/src/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/lzio.c -------------------------------------------------------------------------------- /deps/lua/src/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/lzio.h -------------------------------------------------------------------------------- /deps/lua/src/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/print.c -------------------------------------------------------------------------------- /deps/lua/src/strbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/strbuf.c -------------------------------------------------------------------------------- /deps/lua/src/strbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/src/strbuf.h -------------------------------------------------------------------------------- /deps/lua/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/test/README -------------------------------------------------------------------------------- /deps/lua/test/bisect.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/test/bisect.lua -------------------------------------------------------------------------------- /deps/lua/test/cf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/test/cf.lua -------------------------------------------------------------------------------- /deps/lua/test/echo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/test/echo.lua -------------------------------------------------------------------------------- /deps/lua/test/env.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/test/env.lua -------------------------------------------------------------------------------- /deps/lua/test/factorial.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/test/factorial.lua -------------------------------------------------------------------------------- /deps/lua/test/fib.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/test/fib.lua -------------------------------------------------------------------------------- /deps/lua/test/fibfor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/test/fibfor.lua -------------------------------------------------------------------------------- /deps/lua/test/globals.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/test/globals.lua -------------------------------------------------------------------------------- /deps/lua/test/hello.lua: -------------------------------------------------------------------------------- 1 | -- the first program in every language 2 | 3 | io.write("Hello world, from ",_VERSION,"!\n") 4 | -------------------------------------------------------------------------------- /deps/lua/test/life.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/test/life.lua -------------------------------------------------------------------------------- /deps/lua/test/luac.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/test/luac.lua -------------------------------------------------------------------------------- /deps/lua/test/printf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/test/printf.lua -------------------------------------------------------------------------------- /deps/lua/test/readonly.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/test/readonly.lua -------------------------------------------------------------------------------- /deps/lua/test/sieve.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/test/sieve.lua -------------------------------------------------------------------------------- /deps/lua/test/sort.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/test/sort.lua -------------------------------------------------------------------------------- /deps/lua/test/table.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/test/table.lua -------------------------------------------------------------------------------- /deps/lua/test/trace-calls.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/test/trace-calls.lua -------------------------------------------------------------------------------- /deps/lua/test/trace-globals.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/test/trace-globals.lua -------------------------------------------------------------------------------- /deps/lua/test/xd.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/lua/test/xd.lua -------------------------------------------------------------------------------- /deps/update-jemalloc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/deps/update-jemalloc.sh -------------------------------------------------------------------------------- /redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/redis.conf -------------------------------------------------------------------------------- /runtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/runtest -------------------------------------------------------------------------------- /runtest-cluster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/runtest-cluster -------------------------------------------------------------------------------- /runtest-moduleapi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/runtest-moduleapi -------------------------------------------------------------------------------- /runtest-sentinel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/runtest-sentinel -------------------------------------------------------------------------------- /sentinel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/sentinel.conf -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/acl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/acl.c -------------------------------------------------------------------------------- /src/adlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/adlist.c -------------------------------------------------------------------------------- /src/adlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/adlist.h -------------------------------------------------------------------------------- /src/ae.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/ae.c -------------------------------------------------------------------------------- /src/ae.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/ae.h -------------------------------------------------------------------------------- /src/ae_epoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/ae_epoll.c -------------------------------------------------------------------------------- /src/ae_evport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/ae_evport.c -------------------------------------------------------------------------------- /src/ae_kqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/ae_kqueue.c -------------------------------------------------------------------------------- /src/ae_select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/ae_select.c -------------------------------------------------------------------------------- /src/anet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/anet.c -------------------------------------------------------------------------------- /src/anet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/anet.h -------------------------------------------------------------------------------- /src/aof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/aof.c -------------------------------------------------------------------------------- /src/asciilogo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/asciilogo.h -------------------------------------------------------------------------------- /src/atomicvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/atomicvar.h -------------------------------------------------------------------------------- /src/bio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/bio.c -------------------------------------------------------------------------------- /src/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/bio.h -------------------------------------------------------------------------------- /src/bitops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/bitops.c -------------------------------------------------------------------------------- /src/blocked.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/blocked.c -------------------------------------------------------------------------------- /src/childinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/childinfo.c -------------------------------------------------------------------------------- /src/cluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/cluster.c -------------------------------------------------------------------------------- /src/cluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/cluster.h -------------------------------------------------------------------------------- /src/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/config.c -------------------------------------------------------------------------------- /src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/config.h -------------------------------------------------------------------------------- /src/connection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/connection.c -------------------------------------------------------------------------------- /src/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/connection.h -------------------------------------------------------------------------------- /src/connhelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/connhelpers.h -------------------------------------------------------------------------------- /src/crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/crc16.c -------------------------------------------------------------------------------- /src/crc16_slottable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/crc16_slottable.h -------------------------------------------------------------------------------- /src/crc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/crc64.c -------------------------------------------------------------------------------- /src/crc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/crc64.h -------------------------------------------------------------------------------- /src/crcspeed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/crcspeed.c -------------------------------------------------------------------------------- /src/crcspeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/crcspeed.h -------------------------------------------------------------------------------- /src/db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/db.c -------------------------------------------------------------------------------- /src/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/debug.c -------------------------------------------------------------------------------- /src/debugmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/debugmacro.h -------------------------------------------------------------------------------- /src/defrag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/defrag.c -------------------------------------------------------------------------------- /src/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/dict.c -------------------------------------------------------------------------------- /src/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/dict.h -------------------------------------------------------------------------------- /src/endianconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/endianconv.c -------------------------------------------------------------------------------- /src/endianconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/endianconv.h -------------------------------------------------------------------------------- /src/evict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/evict.c -------------------------------------------------------------------------------- /src/expire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/expire.c -------------------------------------------------------------------------------- /src/fmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/fmacros.h -------------------------------------------------------------------------------- /src/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/geo.c -------------------------------------------------------------------------------- /src/geo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/geo.h -------------------------------------------------------------------------------- /src/geohash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/geohash.c -------------------------------------------------------------------------------- /src/geohash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/geohash.h -------------------------------------------------------------------------------- /src/geohash_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/geohash_helper.c -------------------------------------------------------------------------------- /src/geohash_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/geohash_helper.h -------------------------------------------------------------------------------- /src/gopher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/gopher.c -------------------------------------------------------------------------------- /src/help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/help.h -------------------------------------------------------------------------------- /src/hyperloglog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/hyperloglog.c -------------------------------------------------------------------------------- /src/intset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/intset.c -------------------------------------------------------------------------------- /src/intset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/intset.h -------------------------------------------------------------------------------- /src/latency.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/latency.c -------------------------------------------------------------------------------- /src/latency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/latency.h -------------------------------------------------------------------------------- /src/lazyfree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/lazyfree.c -------------------------------------------------------------------------------- /src/listpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/listpack.c -------------------------------------------------------------------------------- /src/listpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/listpack.h -------------------------------------------------------------------------------- /src/listpack_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/listpack_malloc.h -------------------------------------------------------------------------------- /src/localtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/localtime.c -------------------------------------------------------------------------------- /src/lolwut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/lolwut.c -------------------------------------------------------------------------------- /src/lolwut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/lolwut.h -------------------------------------------------------------------------------- /src/lolwut5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/lolwut5.c -------------------------------------------------------------------------------- /src/lolwut6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/lolwut6.c -------------------------------------------------------------------------------- /src/lzf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/lzf.h -------------------------------------------------------------------------------- /src/lzfP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/lzfP.h -------------------------------------------------------------------------------- /src/lzf_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/lzf_c.c -------------------------------------------------------------------------------- /src/lzf_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/lzf_d.c -------------------------------------------------------------------------------- /src/memtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/memtest.c -------------------------------------------------------------------------------- /src/mkreleasehdr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/mkreleasehdr.sh -------------------------------------------------------------------------------- /src/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/module.c -------------------------------------------------------------------------------- /src/modules/.gitignore: -------------------------------------------------------------------------------- 1 | *.so 2 | *.xo 3 | -------------------------------------------------------------------------------- /src/modules/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/modules/Makefile -------------------------------------------------------------------------------- /src/modules/gendoc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/modules/gendoc.rb -------------------------------------------------------------------------------- /src/modules/helloacl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/modules/helloacl.c -------------------------------------------------------------------------------- /src/modules/helloblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/modules/helloblock.c -------------------------------------------------------------------------------- /src/modules/hellocluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/modules/hellocluster.c -------------------------------------------------------------------------------- /src/modules/hellodict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/modules/hellodict.c -------------------------------------------------------------------------------- /src/modules/hellohook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/modules/hellohook.c -------------------------------------------------------------------------------- /src/modules/hellotimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/modules/hellotimer.c -------------------------------------------------------------------------------- /src/modules/hellotype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/modules/hellotype.c -------------------------------------------------------------------------------- /src/modules/helloworld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/modules/helloworld.c -------------------------------------------------------------------------------- /src/modules/testmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/modules/testmodule.c -------------------------------------------------------------------------------- /src/multi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/multi.c -------------------------------------------------------------------------------- /src/networking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/networking.c -------------------------------------------------------------------------------- /src/notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/notify.c -------------------------------------------------------------------------------- /src/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/object.c -------------------------------------------------------------------------------- /src/pmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/pmem.c -------------------------------------------------------------------------------- /src/pqsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/pqsort.c -------------------------------------------------------------------------------- /src/pqsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/pqsort.h -------------------------------------------------------------------------------- /src/pubsub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/pubsub.c -------------------------------------------------------------------------------- /src/quicklist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/quicklist.c -------------------------------------------------------------------------------- /src/quicklist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/quicklist.h -------------------------------------------------------------------------------- /src/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/rand.c -------------------------------------------------------------------------------- /src/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/rand.h -------------------------------------------------------------------------------- /src/rax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/rax.c -------------------------------------------------------------------------------- /src/rax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/rax.h -------------------------------------------------------------------------------- /src/rax_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/rax_malloc.h -------------------------------------------------------------------------------- /src/rdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/rdb.c -------------------------------------------------------------------------------- /src/rdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/rdb.h -------------------------------------------------------------------------------- /src/redis-benchmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/redis-benchmark.c -------------------------------------------------------------------------------- /src/redis-check-aof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/redis-check-aof.c -------------------------------------------------------------------------------- /src/redis-check-rdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/redis-check-rdb.c -------------------------------------------------------------------------------- /src/redis-cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/redis-cli.c -------------------------------------------------------------------------------- /src/redis-trib.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/redis-trib.rb -------------------------------------------------------------------------------- /src/redisassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/redisassert.h -------------------------------------------------------------------------------- /src/redismodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/redismodule.h -------------------------------------------------------------------------------- /src/release.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/release.c -------------------------------------------------------------------------------- /src/replication.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/replication.c -------------------------------------------------------------------------------- /src/rio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/rio.c -------------------------------------------------------------------------------- /src/rio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/rio.h -------------------------------------------------------------------------------- /src/scripting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/scripting.c -------------------------------------------------------------------------------- /src/sds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/sds.c -------------------------------------------------------------------------------- /src/sds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/sds.h -------------------------------------------------------------------------------- /src/sdsalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/sdsalloc.h -------------------------------------------------------------------------------- /src/sentinel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/sentinel.c -------------------------------------------------------------------------------- /src/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/server.c -------------------------------------------------------------------------------- /src/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/server.h -------------------------------------------------------------------------------- /src/setcpuaffinity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/setcpuaffinity.c -------------------------------------------------------------------------------- /src/setproctitle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/setproctitle.c -------------------------------------------------------------------------------- /src/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/sha1.c -------------------------------------------------------------------------------- /src/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/sha1.h -------------------------------------------------------------------------------- /src/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/sha256.c -------------------------------------------------------------------------------- /src/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/sha256.h -------------------------------------------------------------------------------- /src/siphash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/siphash.c -------------------------------------------------------------------------------- /src/slowlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/slowlog.c -------------------------------------------------------------------------------- /src/slowlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/slowlog.h -------------------------------------------------------------------------------- /src/solarisfixes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/solarisfixes.h -------------------------------------------------------------------------------- /src/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/sort.c -------------------------------------------------------------------------------- /src/sparkline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/sparkline.c -------------------------------------------------------------------------------- /src/sparkline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/sparkline.h -------------------------------------------------------------------------------- /src/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/stream.h -------------------------------------------------------------------------------- /src/syncio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/syncio.c -------------------------------------------------------------------------------- /src/t_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/t_hash.c -------------------------------------------------------------------------------- /src/t_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/t_list.c -------------------------------------------------------------------------------- /src/t_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/t_set.c -------------------------------------------------------------------------------- /src/t_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/t_stream.c -------------------------------------------------------------------------------- /src/t_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/t_string.c -------------------------------------------------------------------------------- /src/t_zset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/t_zset.c -------------------------------------------------------------------------------- /src/testhelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/testhelp.h -------------------------------------------------------------------------------- /src/timeout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/timeout.c -------------------------------------------------------------------------------- /src/tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/tls.c -------------------------------------------------------------------------------- /src/tracking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/tracking.c -------------------------------------------------------------------------------- /src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/util.c -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/util.h -------------------------------------------------------------------------------- /src/valgrind.sup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/valgrind.sup -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- 1 | #define REDIS_VERSION "6.0.5" 2 | -------------------------------------------------------------------------------- /src/ziplist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/ziplist.c -------------------------------------------------------------------------------- /src/ziplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/ziplist.h -------------------------------------------------------------------------------- /src/zipmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/zipmap.c -------------------------------------------------------------------------------- /src/zipmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/zipmap.h -------------------------------------------------------------------------------- /src/zmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/zmalloc.c -------------------------------------------------------------------------------- /src/zmalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/src/zmalloc.h -------------------------------------------------------------------------------- /tests/assets/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/assets/default.conf -------------------------------------------------------------------------------- /tests/assets/encodings.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/assets/encodings.rdb -------------------------------------------------------------------------------- /tests/assets/hash-zipmap.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/assets/hash-zipmap.rdb -------------------------------------------------------------------------------- /tests/cluster/cluster.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/cluster/cluster.tcl -------------------------------------------------------------------------------- /tests/cluster/run.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/cluster/run.tcl -------------------------------------------------------------------------------- /tests/cluster/tests/00-base.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/cluster/tests/00-base.tcl -------------------------------------------------------------------------------- /tests/cluster/tests/01-faildet.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/cluster/tests/01-faildet.tcl -------------------------------------------------------------------------------- /tests/cluster/tests/02-failover.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/cluster/tests/02-failover.tcl -------------------------------------------------------------------------------- /tests/cluster/tests/03-failover-loop.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/cluster/tests/03-failover-loop.tcl -------------------------------------------------------------------------------- /tests/cluster/tests/04-resharding.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/cluster/tests/04-resharding.tcl -------------------------------------------------------------------------------- /tests/cluster/tests/05-slave-selection.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/cluster/tests/05-slave-selection.tcl -------------------------------------------------------------------------------- /tests/cluster/tests/06-slave-stop-cond.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/cluster/tests/06-slave-stop-cond.tcl -------------------------------------------------------------------------------- /tests/cluster/tests/07-replica-migration.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/cluster/tests/07-replica-migration.tcl -------------------------------------------------------------------------------- /tests/cluster/tests/08-update-msg.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/cluster/tests/08-update-msg.tcl -------------------------------------------------------------------------------- /tests/cluster/tests/09-pubsub.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/cluster/tests/09-pubsub.tcl -------------------------------------------------------------------------------- /tests/cluster/tests/10-manual-failover.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/cluster/tests/10-manual-failover.tcl -------------------------------------------------------------------------------- /tests/cluster/tests/11-manual-takeover.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/cluster/tests/11-manual-takeover.tcl -------------------------------------------------------------------------------- /tests/cluster/tests/12-replica-migration-2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/cluster/tests/12-replica-migration-2.tcl -------------------------------------------------------------------------------- /tests/cluster/tests/13-no-failover-option.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/cluster/tests/13-no-failover-option.tcl -------------------------------------------------------------------------------- /tests/cluster/tests/14-consistency-check.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/cluster/tests/14-consistency-check.tcl -------------------------------------------------------------------------------- /tests/cluster/tests/15-cluster-slots.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/cluster/tests/15-cluster-slots.tcl -------------------------------------------------------------------------------- /tests/cluster/tests/helpers/onlydots.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/cluster/tests/helpers/onlydots.tcl -------------------------------------------------------------------------------- /tests/cluster/tests/includes/init-tests.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/cluster/tests/includes/init-tests.tcl -------------------------------------------------------------------------------- /tests/cluster/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | redis_* 2 | sentinel_* 3 | -------------------------------------------------------------------------------- /tests/helpers/bg_block_op.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/helpers/bg_block_op.tcl -------------------------------------------------------------------------------- /tests/helpers/bg_complex_data.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/helpers/bg_complex_data.tcl -------------------------------------------------------------------------------- /tests/helpers/gen_write_load.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/helpers/gen_write_load.tcl -------------------------------------------------------------------------------- /tests/instances.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/instances.tcl -------------------------------------------------------------------------------- /tests/integration/aof-race.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/integration/aof-race.tcl -------------------------------------------------------------------------------- /tests/integration/aof.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/integration/aof.tcl -------------------------------------------------------------------------------- /tests/integration/block-repl.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/integration/block-repl.tcl -------------------------------------------------------------------------------- /tests/integration/convert-zipmap-hash-on-load.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/integration/convert-zipmap-hash-on-load.tcl -------------------------------------------------------------------------------- /tests/integration/logging.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/integration/logging.tcl -------------------------------------------------------------------------------- /tests/integration/psync2-pingoff.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/integration/psync2-pingoff.tcl -------------------------------------------------------------------------------- /tests/integration/psync2-reg.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/integration/psync2-reg.tcl -------------------------------------------------------------------------------- /tests/integration/psync2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/integration/psync2.tcl -------------------------------------------------------------------------------- /tests/integration/rdb.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/integration/rdb.tcl -------------------------------------------------------------------------------- /tests/integration/redis-cli.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/integration/redis-cli.tcl -------------------------------------------------------------------------------- /tests/integration/replication-2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/integration/replication-2.tcl -------------------------------------------------------------------------------- /tests/integration/replication-3.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/integration/replication-3.tcl -------------------------------------------------------------------------------- /tests/integration/replication-4.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/integration/replication-4.tcl -------------------------------------------------------------------------------- /tests/integration/replication-psync.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/integration/replication-psync.tcl -------------------------------------------------------------------------------- /tests/integration/replication.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/integration/replication.tcl -------------------------------------------------------------------------------- /tests/modules/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/modules/Makefile -------------------------------------------------------------------------------- /tests/modules/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/modules/auth.c -------------------------------------------------------------------------------- /tests/modules/blockonkeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/modules/blockonkeys.c -------------------------------------------------------------------------------- /tests/modules/commandfilter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/modules/commandfilter.c -------------------------------------------------------------------------------- /tests/modules/datatype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/modules/datatype.c -------------------------------------------------------------------------------- /tests/modules/fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/modules/fork.c -------------------------------------------------------------------------------- /tests/modules/hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/modules/hooks.c -------------------------------------------------------------------------------- /tests/modules/infotest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/modules/infotest.c -------------------------------------------------------------------------------- /tests/modules/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/modules/misc.c -------------------------------------------------------------------------------- /tests/modules/propagate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/modules/propagate.c -------------------------------------------------------------------------------- /tests/modules/scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/modules/scan.c -------------------------------------------------------------------------------- /tests/modules/testrdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/modules/testrdb.c -------------------------------------------------------------------------------- /tests/sentinel/run.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/sentinel/run.tcl -------------------------------------------------------------------------------- /tests/sentinel/tests/00-base.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/sentinel/tests/00-base.tcl -------------------------------------------------------------------------------- /tests/sentinel/tests/01-conf-update.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/sentinel/tests/01-conf-update.tcl -------------------------------------------------------------------------------- /tests/sentinel/tests/02-slaves-reconf.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/sentinel/tests/02-slaves-reconf.tcl -------------------------------------------------------------------------------- /tests/sentinel/tests/03-runtime-reconf.tcl: -------------------------------------------------------------------------------- 1 | # Test runtime reconfiguration command SENTINEL SET. 2 | -------------------------------------------------------------------------------- /tests/sentinel/tests/04-slave-selection.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/sentinel/tests/04-slave-selection.tcl -------------------------------------------------------------------------------- /tests/sentinel/tests/05-manual.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/sentinel/tests/05-manual.tcl -------------------------------------------------------------------------------- /tests/sentinel/tests/06-ckquorum.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/sentinel/tests/06-ckquorum.tcl -------------------------------------------------------------------------------- /tests/sentinel/tests/07-down-conditions.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/sentinel/tests/07-down-conditions.tcl -------------------------------------------------------------------------------- /tests/sentinel/tests/includes/init-tests.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/sentinel/tests/includes/init-tests.tcl -------------------------------------------------------------------------------- /tests/sentinel/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | redis_* 2 | sentinel_* 3 | -------------------------------------------------------------------------------- /tests/support/cli.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/support/cli.tcl -------------------------------------------------------------------------------- /tests/support/cluster.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/support/cluster.tcl -------------------------------------------------------------------------------- /tests/support/redis.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/support/redis.tcl -------------------------------------------------------------------------------- /tests/support/server.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/support/server.tcl -------------------------------------------------------------------------------- /tests/support/test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/support/test.tcl -------------------------------------------------------------------------------- /tests/support/tmpfile.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/support/tmpfile.tcl -------------------------------------------------------------------------------- /tests/support/util.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/support/util.tcl -------------------------------------------------------------------------------- /tests/test_helper.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/test_helper.tcl -------------------------------------------------------------------------------- /tests/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /tests/unit/acl.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/acl.tcl -------------------------------------------------------------------------------- /tests/unit/aofrw.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/aofrw.tcl -------------------------------------------------------------------------------- /tests/unit/auth.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/auth.tcl -------------------------------------------------------------------------------- /tests/unit/bitfield.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/bitfield.tcl -------------------------------------------------------------------------------- /tests/unit/bitops.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/bitops.tcl -------------------------------------------------------------------------------- /tests/unit/dump.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/dump.tcl -------------------------------------------------------------------------------- /tests/unit/expire.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/expire.tcl -------------------------------------------------------------------------------- /tests/unit/geo.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/geo.tcl -------------------------------------------------------------------------------- /tests/unit/hyperloglog.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/hyperloglog.tcl -------------------------------------------------------------------------------- /tests/unit/introspection-2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/introspection-2.tcl -------------------------------------------------------------------------------- /tests/unit/introspection.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/introspection.tcl -------------------------------------------------------------------------------- /tests/unit/keyspace.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/keyspace.tcl -------------------------------------------------------------------------------- /tests/unit/latency-monitor.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/latency-monitor.tcl -------------------------------------------------------------------------------- /tests/unit/lazyfree.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/lazyfree.tcl -------------------------------------------------------------------------------- /tests/unit/limits.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/limits.tcl -------------------------------------------------------------------------------- /tests/unit/maxmemory.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/maxmemory.tcl -------------------------------------------------------------------------------- /tests/unit/memefficiency.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/memefficiency.tcl -------------------------------------------------------------------------------- /tests/unit/moduleapi/auth.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/moduleapi/auth.tcl -------------------------------------------------------------------------------- /tests/unit/moduleapi/blockonkeys.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/moduleapi/blockonkeys.tcl -------------------------------------------------------------------------------- /tests/unit/moduleapi/commandfilter.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/moduleapi/commandfilter.tcl -------------------------------------------------------------------------------- /tests/unit/moduleapi/datatype.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/moduleapi/datatype.tcl -------------------------------------------------------------------------------- /tests/unit/moduleapi/fork.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/moduleapi/fork.tcl -------------------------------------------------------------------------------- /tests/unit/moduleapi/hooks.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/moduleapi/hooks.tcl -------------------------------------------------------------------------------- /tests/unit/moduleapi/infotest.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/moduleapi/infotest.tcl -------------------------------------------------------------------------------- /tests/unit/moduleapi/misc.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/moduleapi/misc.tcl -------------------------------------------------------------------------------- /tests/unit/moduleapi/propagate.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/moduleapi/propagate.tcl -------------------------------------------------------------------------------- /tests/unit/moduleapi/scan.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/moduleapi/scan.tcl -------------------------------------------------------------------------------- /tests/unit/moduleapi/testrdb.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/moduleapi/testrdb.tcl -------------------------------------------------------------------------------- /tests/unit/multi.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/multi.tcl -------------------------------------------------------------------------------- /tests/unit/obuf-limits.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/obuf-limits.tcl -------------------------------------------------------------------------------- /tests/unit/other.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/other.tcl -------------------------------------------------------------------------------- /tests/unit/pendingquerybuf.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/pendingquerybuf.tcl -------------------------------------------------------------------------------- /tests/unit/printver.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/printver.tcl -------------------------------------------------------------------------------- /tests/unit/protocol.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/protocol.tcl -------------------------------------------------------------------------------- /tests/unit/pubsub.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/pubsub.tcl -------------------------------------------------------------------------------- /tests/unit/quit.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/quit.tcl -------------------------------------------------------------------------------- /tests/unit/scan.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/scan.tcl -------------------------------------------------------------------------------- /tests/unit/scripting.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/scripting.tcl -------------------------------------------------------------------------------- /tests/unit/slowlog.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/slowlog.tcl -------------------------------------------------------------------------------- /tests/unit/sort.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/sort.tcl -------------------------------------------------------------------------------- /tests/unit/tls.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/tls.tcl -------------------------------------------------------------------------------- /tests/unit/tracking.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/tracking.tcl -------------------------------------------------------------------------------- /tests/unit/type/hash.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/type/hash.tcl -------------------------------------------------------------------------------- /tests/unit/type/incr.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/type/incr.tcl -------------------------------------------------------------------------------- /tests/unit/type/list-2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/type/list-2.tcl -------------------------------------------------------------------------------- /tests/unit/type/list-3.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/type/list-3.tcl -------------------------------------------------------------------------------- /tests/unit/type/list-common.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/type/list-common.tcl -------------------------------------------------------------------------------- /tests/unit/type/list.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/type/list.tcl -------------------------------------------------------------------------------- /tests/unit/type/set.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/type/set.tcl -------------------------------------------------------------------------------- /tests/unit/type/stream-cgroups.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/type/stream-cgroups.tcl -------------------------------------------------------------------------------- /tests/unit/type/stream.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/type/stream.tcl -------------------------------------------------------------------------------- /tests/unit/type/string.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/type/string.tcl -------------------------------------------------------------------------------- /tests/unit/type/zset.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/type/zset.tcl -------------------------------------------------------------------------------- /tests/unit/wait.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/tests/unit/wait.tcl -------------------------------------------------------------------------------- /utils/build-static-symbols.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/utils/build-static-symbols.tcl -------------------------------------------------------------------------------- /utils/cluster_fail_time.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/utils/cluster_fail_time.tcl -------------------------------------------------------------------------------- /utils/corrupt_rdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/utils/corrupt_rdb.c -------------------------------------------------------------------------------- /utils/create-cluster/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/utils/create-cluster/.gitignore -------------------------------------------------------------------------------- /utils/create-cluster/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/utils/create-cluster/README -------------------------------------------------------------------------------- /utils/create-cluster/create-cluster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/utils/create-cluster/create-cluster -------------------------------------------------------------------------------- /utils/gen-test-certs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/utils/gen-test-certs.sh -------------------------------------------------------------------------------- /utils/generate-command-help.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/utils/generate-command-help.rb -------------------------------------------------------------------------------- /utils/graphs/commits-over-time/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/utils/graphs/commits-over-time/README.md -------------------------------------------------------------------------------- /utils/graphs/commits-over-time/genhtml.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/utils/graphs/commits-over-time/genhtml.tcl -------------------------------------------------------------------------------- /utils/hashtable/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/utils/hashtable/README -------------------------------------------------------------------------------- /utils/hashtable/rehashing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/utils/hashtable/rehashing.c -------------------------------------------------------------------------------- /utils/hyperloglog/.gitignore: -------------------------------------------------------------------------------- 1 | *.txt 2 | -------------------------------------------------------------------------------- /utils/hyperloglog/hll-err.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/utils/hyperloglog/hll-err.rb -------------------------------------------------------------------------------- /utils/hyperloglog/hll-gnuplot-graph.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/utils/hyperloglog/hll-gnuplot-graph.rb -------------------------------------------------------------------------------- /utils/install_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/utils/install_server.sh -------------------------------------------------------------------------------- /utils/lru/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/utils/lru/README -------------------------------------------------------------------------------- /utils/lru/lfu-simulation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/utils/lru/lfu-simulation.c -------------------------------------------------------------------------------- /utils/lru/test-lru.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/utils/lru/test-lru.rb -------------------------------------------------------------------------------- /utils/redis-copy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/utils/redis-copy.rb -------------------------------------------------------------------------------- /utils/redis-sha1.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/utils/redis-sha1.rb -------------------------------------------------------------------------------- /utils/redis_init_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/utils/redis_init_script -------------------------------------------------------------------------------- /utils/redis_init_script.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/utils/redis_init_script.tpl -------------------------------------------------------------------------------- /utils/releasetools/01_create_tarball.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/utils/releasetools/01_create_tarball.sh -------------------------------------------------------------------------------- /utils/releasetools/02_upload_tarball.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/utils/releasetools/02_upload_tarball.sh -------------------------------------------------------------------------------- /utils/releasetools/03_test_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/utils/releasetools/03_test_release.sh -------------------------------------------------------------------------------- /utils/releasetools/04_release_hash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/utils/releasetools/04_release_hash.sh -------------------------------------------------------------------------------- /utils/releasetools/changelog.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/utils/releasetools/changelog.tcl -------------------------------------------------------------------------------- /utils/speed-regression.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/utils/speed-regression.tcl -------------------------------------------------------------------------------- /utils/srandmember/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/utils/srandmember/README.md -------------------------------------------------------------------------------- /utils/srandmember/showdist.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/utils/srandmember/showdist.rb -------------------------------------------------------------------------------- /utils/srandmember/showfreq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/utils/srandmember/showfreq.rb -------------------------------------------------------------------------------- /utils/systemd-redis_multiple_servers@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/utils/systemd-redis_multiple_servers@.service -------------------------------------------------------------------------------- /utils/systemd-redis_server.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/utils/systemd-redis_server.service -------------------------------------------------------------------------------- /utils/tracking_collisions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/utils/tracking_collisions.c -------------------------------------------------------------------------------- /utils/whatisdoing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmem/redis/HEAD/utils/whatisdoing.sh --------------------------------------------------------------------------------