├── .gitignore ├── .gitmodules ├── .travis.yml ├── CMakeLists.txt ├── LICENSE ├── README.md ├── docs ├── QUICKSTART.md └── fundamental.jpg ├── swap-redis-4.0.0 ├── .gitignore ├── 00-RELEASENOTES ├── BUGS ├── CMakeLists.txt ├── CONTRIBUTING ├── COPYING ├── INSTALL ├── MANIFESTO ├── Makefile ├── README.md ├── deps │ ├── Makefile │ ├── README.md │ ├── hiredis │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── 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 │ │ ├── dict.c │ │ ├── dict.h │ │ ├── examples │ │ │ ├── example-ae.c │ │ │ ├── example-glib.c │ │ │ ├── example-ivykis.c │ │ │ ├── example-libev.c │ │ │ ├── example-libevent.c │ │ │ ├── example-libuv.c │ │ │ ├── example-macosx.c │ │ │ ├── example-qt.cpp │ │ │ ├── example-qt.h │ │ │ └── example.c │ │ ├── fmacros.h │ │ ├── hiredis.c │ │ ├── hiredis.h │ │ ├── net.c │ │ ├── net.h │ │ ├── read.c │ │ ├── read.h │ │ ├── sds.c │ │ ├── sds.h │ │ ├── sdsalloc.h │ │ ├── test.c │ │ └── win32.h │ ├── jemalloc │ │ ├── .autom4te.cfg │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── INSTALL │ │ ├── Makefile.in │ │ ├── README │ │ ├── VERSION │ │ ├── autogen.sh │ │ ├── bin │ │ │ ├── jemalloc-config.in │ │ │ ├── jemalloc.sh.in │ │ │ └── jeprof.in │ │ ├── config.guess │ │ ├── config.stamp.in │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.ac │ │ ├── coverage.sh │ │ ├── doc │ │ │ ├── html.xsl.in │ │ │ ├── jemalloc.xml.in │ │ │ ├── manpages.xsl.in │ │ │ └── stylesheet.xsl │ │ ├── include │ │ │ ├── jemalloc │ │ │ │ ├── internal │ │ │ │ │ ├── arena.h │ │ │ │ │ ├── atomic.h │ │ │ │ │ ├── base.h │ │ │ │ │ ├── bitmap.h │ │ │ │ │ ├── chunk.h │ │ │ │ │ ├── chunk_dss.h │ │ │ │ │ ├── chunk_mmap.h │ │ │ │ │ ├── ckh.h │ │ │ │ │ ├── ctl.h │ │ │ │ │ ├── extent.h │ │ │ │ │ ├── hash.h │ │ │ │ │ ├── huge.h │ │ │ │ │ ├── jemalloc_internal.h.in │ │ │ │ │ ├── jemalloc_internal_decls.h │ │ │ │ │ ├── jemalloc_internal_defs.h.in │ │ │ │ │ ├── jemalloc_internal_macros.h │ │ │ │ │ ├── mb.h │ │ │ │ │ ├── mutex.h │ │ │ │ │ ├── pages.h │ │ │ │ │ ├── private_namespace.sh │ │ │ │ │ ├── private_symbols.txt │ │ │ │ │ ├── private_unnamespace.sh │ │ │ │ │ ├── prng.h │ │ │ │ │ ├── prof.h │ │ │ │ │ ├── public_namespace.sh │ │ │ │ │ ├── public_unnamespace.sh │ │ │ │ │ ├── ql.h │ │ │ │ │ ├── qr.h │ │ │ │ │ ├── quarantine.h │ │ │ │ │ ├── rb.h │ │ │ │ │ ├── rtree.h │ │ │ │ │ ├── size_classes.sh │ │ │ │ │ ├── stats.h │ │ │ │ │ ├── tcache.h │ │ │ │ │ ├── tsd.h │ │ │ │ │ ├── util.h │ │ │ │ │ └── valgrind.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 │ │ ├── install-sh │ │ ├── jemalloc.pc.in │ │ ├── src │ │ │ ├── arena.c │ │ │ ├── atomic.c │ │ │ ├── base.c │ │ │ ├── bitmap.c │ │ │ ├── chunk.c │ │ │ ├── chunk_dss.c │ │ │ ├── chunk_mmap.c │ │ │ ├── ckh.c │ │ │ ├── ctl.c │ │ │ ├── extent.c │ │ │ ├── hash.c │ │ │ ├── huge.c │ │ │ ├── jemalloc.c │ │ │ ├── mb.c │ │ │ ├── mutex.c │ │ │ ├── pages.c │ │ │ ├── prof.c │ │ │ ├── quarantine.c │ │ │ ├── rtree.c │ │ │ ├── stats.c │ │ │ ├── tcache.c │ │ │ ├── tsd.c │ │ │ ├── util.c │ │ │ ├── valgrind.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 │ │ │ │ ├── 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 │ │ │ ├── chunk.c │ │ │ ├── mallocx.c │ │ │ ├── overflow.c │ │ │ ├── posix_memalign.c │ │ │ ├── rallocx.c │ │ │ ├── sdallocx.c │ │ │ ├── thread_arena.c │ │ │ ├── thread_tcache_enabled.c │ │ │ └── xallocx.c │ │ │ ├── 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 │ │ │ ├── atomic.c │ │ │ ├── bitmap.c │ │ │ ├── ckh.c │ │ │ ├── hash.c │ │ │ ├── junk.c │ │ │ ├── junk_alloc.c │ │ │ ├── junk_free.c │ │ │ ├── lg_chunk.c │ │ │ ├── mallctl.c │ │ │ ├── math.c │ │ │ ├── mq.c │ │ │ ├── mtx.c │ │ │ ├── prof_accum.c │ │ │ ├── prof_active.c │ │ │ ├── prof_gdump.c │ │ │ ├── prof_idump.c │ │ │ ├── prof_reset.c │ │ │ ├── prof_thread_name.c │ │ │ ├── ql.c │ │ │ ├── qr.c │ │ │ ├── quarantine.c │ │ │ ├── rb.c │ │ │ ├── rtree.c │ │ │ ├── size_classes.c │ │ │ ├── stats.c │ │ │ ├── tsd.c │ │ │ ├── util.c │ │ │ └── zero.c │ ├── linenoise │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README.markdown │ │ ├── example.c │ │ ├── linenoise.c │ │ └── linenoise.h │ ├── lua │ │ ├── COPYRIGHT │ │ ├── HISTORY │ │ ├── INSTALL │ │ ├── Makefile │ │ ├── README │ │ ├── doc │ │ │ ├── contents.html │ │ │ ├── cover.png │ │ │ ├── logo.gif │ │ │ ├── lua.1 │ │ │ ├── lua.css │ │ │ ├── lua.html │ │ │ ├── luac.1 │ │ │ ├── luac.html │ │ │ ├── manual.css │ │ │ ├── manual.html │ │ │ └── readme.html │ │ ├── etc │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── all.c │ │ │ ├── lua.hpp │ │ │ ├── lua.ico │ │ │ ├── lua.pc │ │ │ ├── luavs.bat │ │ │ ├── min.c │ │ │ ├── noparser.c │ │ │ └── strict.lua │ │ ├── src │ │ │ ├── Makefile │ │ │ ├── fpconv.c │ │ │ ├── fpconv.h │ │ │ ├── lapi.c │ │ │ ├── lapi.h │ │ │ ├── lauxlib.c │ │ │ ├── lauxlib.h │ │ │ ├── lbaselib.c │ │ │ ├── lcode.c │ │ │ ├── lcode.h │ │ │ ├── ldblib.c │ │ │ ├── ldebug.c │ │ │ ├── ldebug.h │ │ │ ├── ldo.c │ │ │ ├── ldo.h │ │ │ ├── ldump.c │ │ │ ├── lfunc.c │ │ │ ├── lfunc.h │ │ │ ├── lgc.c │ │ │ ├── lgc.h │ │ │ ├── linit.c │ │ │ ├── liolib.c │ │ │ ├── llex.c │ │ │ ├── llex.h │ │ │ ├── llimits.h │ │ │ ├── lmathlib.c │ │ │ ├── lmem.c │ │ │ ├── lmem.h │ │ │ ├── loadlib.c │ │ │ ├── lobject.c │ │ │ ├── lobject.h │ │ │ ├── lopcodes.c │ │ │ ├── lopcodes.h │ │ │ ├── loslib.c │ │ │ ├── lparser.c │ │ │ ├── lparser.h │ │ │ ├── lstate.c │ │ │ ├── lstate.h │ │ │ ├── lstring.c │ │ │ ├── lstring.h │ │ │ ├── lstrlib.c │ │ │ ├── ltable.c │ │ │ ├── ltable.h │ │ │ ├── ltablib.c │ │ │ ├── ltm.c │ │ │ ├── ltm.h │ │ │ ├── lua.c │ │ │ ├── lua.h │ │ │ ├── lua_bit.c │ │ │ ├── lua_cjson.c │ │ │ ├── lua_cmsgpack.c │ │ │ ├── lua_struct.c │ │ │ ├── luac.c │ │ │ ├── luaconf.h │ │ │ ├── lualib.h │ │ │ ├── lundump.c │ │ │ ├── lundump.h │ │ │ ├── lvm.c │ │ │ ├── lvm.h │ │ │ ├── lzio.c │ │ │ ├── lzio.h │ │ │ ├── print.c │ │ │ ├── strbuf.c │ │ │ └── strbuf.h │ │ └── test │ │ │ ├── README │ │ │ ├── bisect.lua │ │ │ ├── cf.lua │ │ │ ├── echo.lua │ │ │ ├── env.lua │ │ │ ├── factorial.lua │ │ │ ├── fib.lua │ │ │ ├── fibfor.lua │ │ │ ├── globals.lua │ │ │ ├── hello.lua │ │ │ ├── life.lua │ │ │ ├── luac.lua │ │ │ ├── printf.lua │ │ │ ├── readonly.lua │ │ │ ├── sieve.lua │ │ │ ├── sort.lua │ │ │ ├── table.lua │ │ │ ├── trace-calls.lua │ │ │ ├── trace-globals.lua │ │ │ └── xd.lua │ └── update-jemalloc.sh ├── prepareCmake.sh ├── redis.conf ├── runtest ├── runtest-cluster ├── runtest-sentinel ├── runtest_qa_cluster ├── runtest_qa_redis ├── sentinel.conf ├── src │ ├── .gitignore │ ├── Makefile │ ├── 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 │ ├── cluster_v3.c │ ├── cluster_v3.h │ ├── config.c │ ├── config.h │ ├── crc16.c │ ├── crc64.c │ ├── crc64.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 │ ├── help.h │ ├── hyperloglog.c │ ├── intset.c │ ├── intset.h │ ├── latency.c │ ├── latency.h │ ├── lazyfree.c │ ├── lzf.h │ ├── lzfP.h │ ├── lzf_c.c │ ├── lzf_d.c │ ├── memprotect.c │ ├── memprotect.h │ ├── memtest.c │ ├── mkreleasehdr.sh │ ├── module.c │ ├── modules │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── gendoc.rb │ │ ├── helloblock.c │ │ ├── hellotype.c │ │ ├── helloworld.c │ │ └── testmodule.c │ ├── multi.c │ ├── networking.c │ ├── notify.c │ ├── object.c │ ├── pqsort.c │ ├── pqsort.h │ ├── pubsub.c │ ├── quicklist.c │ ├── quicklist.h │ ├── rand.c │ ├── rand.h │ ├── rax.c │ ├── rax.h │ ├── rax_malloc.h │ ├── rdb.c │ ├── rdb.h │ ├── redis-benchmark.c │ ├── redis-check-aof.c │ ├── redis-check-rdb.c │ ├── redis-cli.c │ ├── redis-trib.rb │ ├── redisassert.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 │ ├── setproctitle.c │ ├── sha1.c │ ├── sha1.h │ ├── siphash.c │ ├── slowlog.c │ ├── slowlog.h │ ├── solarisfixes.h │ ├── sort.c │ ├── sparkline.c │ ├── sparkline.h │ ├── syncio.c │ ├── t_hash.c │ ├── t_list.c │ ├── t_set.c │ ├── t_string.c │ ├── t_zset.c │ ├── testhelp.h │ ├── unittest │ │ ├── make.sh │ │ ├── sds.c │ │ ├── sds.h │ │ ├── test_mem_crash.c │ │ └── testhotpool.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 │ │ │ ├── helpers │ │ │ │ └── onlydots.tcl │ │ │ └── includes │ │ │ │ └── init-tests.tcl │ │ └── tmp │ │ │ └── .gitignore │ ├── helpers │ │ ├── bg_complex_data.tcl │ │ └── gen_write_load.tcl │ ├── instances.tcl │ ├── integration │ │ ├── aof-race.tcl │ │ ├── aof.tcl │ │ ├── convert-zipmap-hash-on-load.tcl │ │ ├── logging.tcl │ │ ├── psync2.tcl │ │ ├── rdb.tcl │ │ ├── redis-cli.tcl │ │ ├── replication-2.tcl │ │ ├── replication-3.tcl │ │ ├── replication-4.tcl │ │ ├── replication-psync.tcl │ │ └── replication.tcl │ ├── qa │ │ └── integration │ │ │ ├── python │ │ │ ├── test_midstate.py │ │ │ ├── test_mthreads.py │ │ │ └── test_pipeline.py │ │ │ └── tests │ │ │ ├── assets │ │ │ ├── default.conf │ │ │ ├── encodings.rdb │ │ │ ├── hash-zipmap.rdb │ │ │ ├── rdb.conf │ │ │ ├── real.conf │ │ │ └── ssdb_default.conf │ │ │ ├── cluster │ │ │ ├── README │ │ │ ├── cluster.tcl │ │ │ ├── run.tcl │ │ │ ├── scripts │ │ │ │ ├── MSconsist.sh │ │ │ │ ├── README │ │ │ │ ├── SendtoMaster.sh │ │ │ │ ├── benchCluster.sh │ │ │ │ ├── checkLog.sh │ │ │ │ ├── dumpdata.sh │ │ │ │ ├── failover.sh │ │ │ │ ├── failover_time.sh │ │ │ │ ├── redis.cfg │ │ │ │ └── runjar.sh │ │ │ ├── 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-slot-migration.tcl │ │ │ │ ├── 14-manual-failover-2.tcl │ │ │ │ ├── 15-MC-manual-failover-1.tcl │ │ │ │ ├── 16-MC-manual-failover-2.tcl │ │ │ │ ├── 17-MC-manual-normal-failover-all-1.tcl │ │ │ │ ├── 18-MC-manual-normal-failover-all-2.tcl │ │ │ │ ├── 19-MC-manual-normal-failover-all-3.tcl │ │ │ │ ├── 20-MC-manual-down-failover-all-1.tcl │ │ │ │ ├── 21-MC-manual-down-failover-all-2.tcl │ │ │ │ ├── 22-MC-auto-failover-1.tcl │ │ │ │ ├── 23-MC-auto-failover-2.tcl │ │ │ │ ├── 24-MC-auto-failover-3.tcl │ │ │ │ ├── 25-MC-auto-failover-4.tcl │ │ │ │ ├── 26-MC-slave-selection-2.tcl │ │ │ │ ├── 27-MC-replica-migration-3.tcl │ │ │ │ ├── 28-MC-replica-all.tcl │ │ │ │ ├── helpers │ │ │ │ │ ├── 04-resharding.tcl │ │ │ │ │ └── onlydots.tcl │ │ │ │ └── includes │ │ │ │ │ └── init-tests.tcl │ │ │ └── tmp │ │ │ │ └── .gitignore │ │ │ ├── helpers │ │ │ ├── bg_command.tcl │ │ │ ├── bg_complex_data.tcl │ │ │ ├── bg_mirror_complex.tcl │ │ │ ├── gen_write_load.tcl │ │ │ └── start_hit_ssdb_tps.tcl │ │ │ ├── instances.tcl │ │ │ ├── integration │ │ │ ├── aof-race.tcl │ │ │ ├── aof.tcl │ │ │ ├── convert-zipmap-hash-on-load.tcl │ │ │ ├── logging.tcl │ │ │ ├── mirror.tcl │ │ │ ├── psync2.tcl │ │ │ ├── rdb.tcl │ │ │ ├── redis-cli.tcl │ │ │ ├── replication-2.tcl │ │ │ ├── replication-3.tcl │ │ │ ├── replication-4.tcl │ │ │ ├── replication-5.tcl │ │ │ ├── replication-A.tcl │ │ │ ├── replication-B.tcl │ │ │ ├── replication-C.tcl │ │ │ ├── replication-base.tcl │ │ │ ├── replication-psync.tcl │ │ │ ├── replication-r1.tcl │ │ │ ├── replication-r2.tcl │ │ │ ├── replication-r3.tcl │ │ │ └── replication-stable.tcl │ │ │ ├── ssdb │ │ │ ├── aofrw.tcl │ │ │ ├── basecommands.tcl │ │ │ ├── client-recon.tcl │ │ │ ├── communicate-base.tcl │ │ │ ├── db.tcl │ │ │ ├── dump.tcl │ │ │ ├── encoding.tcl │ │ │ ├── flush.tcl │ │ │ ├── keystatus.tcl │ │ │ ├── lfu-policy.tcl │ │ │ ├── lfu-policy2.tcl │ │ │ ├── lfu-policy3.tcl │ │ │ ├── lfu.tcl │ │ │ ├── loadconfig.tcl │ │ │ ├── maxpolicy.tcl │ │ │ ├── python.tcl │ │ │ ├── ssdbinfo.tcl │ │ │ └── threads.tcl │ │ │ ├── support │ │ │ ├── cluster.tcl │ │ │ ├── redis.tcl │ │ │ ├── server.tcl │ │ │ ├── test.tcl │ │ │ ├── tmpfile.tcl │ │ │ └── util.tcl │ │ │ ├── test_helper.tcl │ │ │ └── unit │ │ │ ├── aofrw.tcl │ │ │ ├── auth.tcl │ │ │ ├── bitfield.tcl │ │ │ ├── bitops.tcl │ │ │ ├── dump.tcl │ │ │ ├── expire.tcl │ │ │ ├── geo.tcl │ │ │ ├── hyperloglog.tcl │ │ │ ├── introspection.tcl │ │ │ ├── keyspace.tcl │ │ │ ├── latency-monitor.tcl │ │ │ ├── lazyfree.tcl │ │ │ ├── limits.tcl │ │ │ ├── maxmemory.tcl │ │ │ ├── memefficiency.tcl │ │ │ ├── multi.tcl │ │ │ ├── obuf-limits.tcl │ │ │ ├── other.tcl │ │ │ ├── printver.tcl │ │ │ ├── protocol.tcl │ │ │ ├── pubsub.tcl │ │ │ ├── quit.tcl │ │ │ ├── scan.tcl │ │ │ ├── scripting.tcl │ │ │ ├── slowlog.tcl │ │ │ ├── sort.tcl │ │ │ ├── type │ │ │ ├── hash.tcl │ │ │ ├── incr.tcl │ │ │ ├── list-2.tcl │ │ │ ├── list-3.tcl │ │ │ ├── list-common.tcl │ │ │ ├── list.tcl │ │ │ ├── set.tcl │ │ │ ├── string.tcl │ │ │ ├── zset-2.tcl │ │ │ └── zset.tcl │ │ │ └── wait.tcl │ ├── sentinel │ │ ├── run.tcl │ │ ├── tests │ │ │ ├── 00-base.tcl │ │ │ ├── 01-conf-update.tcl │ │ │ ├── 02-slaves-reconf.tcl │ │ │ ├── 03-runtime-reconf.tcl │ │ │ ├── 04-slave-selection.tcl │ │ │ ├── 05-manual.tcl │ │ │ ├── 06-ckquorum.tcl │ │ │ ├── 07-down-conditions.tcl │ │ │ └── includes │ │ │ │ └── init-tests.tcl │ │ └── tmp │ │ │ └── .gitignore │ ├── support │ │ ├── cluster.tcl │ │ ├── redis.tcl │ │ ├── server.tcl │ │ ├── test.tcl │ │ ├── tmpfile.tcl │ │ └── util.tcl │ ├── test_helper.tcl │ └── unit │ │ ├── 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 │ │ ├── multi.tcl │ │ ├── obuf-limits.tcl │ │ ├── other.tcl │ │ ├── printver.tcl │ │ ├── protocol.tcl │ │ ├── pubsub.tcl │ │ ├── quit.tcl │ │ ├── scan.tcl │ │ ├── scripting.tcl │ │ ├── slowlog.tcl │ │ ├── sort.tcl │ │ ├── type │ │ ├── hash.tcl │ │ ├── incr.tcl │ │ ├── list-2.tcl │ │ ├── list-3.tcl │ │ ├── list-common.tcl │ │ ├── list.tcl │ │ ├── set.tcl │ │ ├── string.tcl │ │ └── zset.tcl │ │ └── wait.tcl └── utils │ ├── build-static-symbols.tcl │ ├── cluster_fail_time.tcl │ ├── corrupt_rdb.c │ ├── create-cluster │ ├── .gitignore │ ├── README │ └── create-cluster │ ├── 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 │ ├── r2m_cluster │ ├── cluster_instances.csv.default │ ├── deploy_r2m_cluster.sh │ └── redis_xxxx.conf.template │ ├── 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 │ └── whatisdoing.sh ├── swap-ssdb-1.9.2 ├── .gitignore ├── CMakeLists.txt ├── ChangeLog ├── Dockerfile ├── LICENSE ├── LICENSE_SSDB ├── README.md ├── api │ ├── README.md │ ├── cpy │ │ ├── SSDB.cpy │ │ └── demo.cpy │ └── python │ │ ├── SSDB.py │ │ └── demo.py ├── build.sh ├── deps │ ├── bzip2-1.0.6 │ │ ├── CHANGES │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── Makefile-libbz2_so │ │ ├── README │ │ ├── README.COMPILATION.PROBLEMS │ │ ├── README.XML.STUFF │ │ ├── blocksort.c │ │ ├── bz-common.xsl │ │ ├── bz-fo.xsl │ │ ├── bz-html.xsl │ │ ├── bzdiff │ │ ├── bzdiff.1 │ │ ├── bzgrep │ │ ├── bzgrep.1 │ │ ├── bzip.css │ │ ├── bzip2.1 │ │ ├── bzip2.1.preformatted │ │ ├── bzip2.c │ │ ├── bzip2.txt │ │ ├── bzip2recover.c │ │ ├── bzlib.c │ │ ├── bzlib.h │ │ ├── bzlib_private.h │ │ ├── bzmore │ │ ├── bzmore.1 │ │ ├── compress.c │ │ ├── crctable.c │ │ ├── decompress.c │ │ ├── dlltest.c │ │ ├── dlltest.dsp │ │ ├── entities.xml │ │ ├── format.pl │ │ ├── huffman.c │ │ ├── libbz2.def │ │ ├── libbz2.dsp │ │ ├── makefile.msc │ │ ├── manual.html │ │ ├── manual.pdf │ │ ├── manual.ps │ │ ├── manual.xml │ │ ├── mk251.c │ │ ├── randtable.c │ │ ├── sample1.bz2 │ │ ├── sample1.ref │ │ ├── sample2.bz2 │ │ ├── sample2.ref │ │ ├── sample3.bz2 │ │ ├── sample3.ref │ │ ├── spewG.c │ │ ├── unzcrash.c │ │ ├── words0 │ │ ├── words1 │ │ ├── words2 │ │ ├── words3 │ │ └── xmlproc.sh │ └── cpy │ │ ├── Eval.g │ │ ├── Eval.py │ │ ├── Expr.g │ │ ├── ExprLexer.py │ │ ├── ExprParser.py │ │ ├── Makefile │ │ ├── Readme.txt │ │ ├── antlr3 │ │ ├── __init__.py │ │ ├── compat.py │ │ ├── constants.py │ │ ├── dfa.py │ │ ├── dottreegen.py │ │ ├── exceptions.py │ │ ├── extras.py │ │ ├── main.py │ │ ├── recognizers.py │ │ ├── streams.py │ │ ├── tokens.py │ │ ├── tree.py │ │ └── treewizard.py │ │ ├── cpy │ │ ├── cpy.bat │ │ ├── cpy.py │ │ ├── engine.py │ │ └── samples │ │ ├── class.cpy │ │ ├── extends.cpy │ │ ├── foreach.cpy │ │ ├── function.cpy │ │ ├── hello.cpy │ │ ├── list.cpy │ │ ├── object.cpy │ │ ├── simple_client.cpy │ │ ├── simple_server.cpy │ │ ├── stdin.cpy │ │ └── test.cpy ├── docs │ ├── README.md │ ├── logo.png │ └── logo.svg ├── runtest.sh ├── runtest_qa.sh ├── src │ ├── Makefile │ ├── bproc_data.cpp │ ├── client │ │ ├── Doxyfile │ │ ├── Makefile │ │ ├── README.md │ │ ├── SSDB_client.h │ │ ├── SSDB_impl.cpp │ │ ├── SSDB_impl.h │ │ ├── demo.cpp │ │ └── hello-ssdb.cpp │ ├── codec │ │ ├── decode.cpp │ │ ├── decode.h │ │ ├── encode.cpp │ │ ├── encode.h │ │ ├── util.cpp │ │ └── util.h │ ├── common │ │ └── context.hpp │ ├── include.h │ ├── net │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── fde.cpp │ │ ├── fde.h │ │ ├── fde_epoll.cpp │ │ ├── fde_select.cpp │ │ ├── link.cpp │ │ ├── link.h │ │ ├── link_redis.cpp │ │ ├── link_redis.h │ │ ├── proc.cpp │ │ ├── proc.h │ │ ├── redis │ │ │ ├── redis_client.cpp │ │ │ ├── redis_client.h │ │ │ ├── redis_stream.cpp │ │ │ ├── redis_stream.h │ │ │ ├── reponse_redis.h │ │ │ ├── transfer.cpp │ │ │ └── transfer.h │ │ ├── resp.cpp │ │ ├── resp.h │ │ ├── server.cpp │ │ ├── server.h │ │ ├── test.conf │ │ ├── test.cpp │ │ ├── test2.cpp │ │ ├── test_link.cpp │ │ ├── worker.cpp │ │ └── worker.h │ ├── proc_hash.cpp │ ├── proc_kv.cpp │ ├── proc_queue.cpp │ ├── proc_set.cpp │ ├── proc_zset.cpp │ ├── redis │ │ ├── crc │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── crc16speed.c │ │ │ ├── crc16speed.h │ │ │ ├── crc64speed.c │ │ │ ├── crc64speed.h │ │ │ ├── crcspeed.c │ │ │ ├── crcspeed.h │ │ │ └── main.c │ │ ├── crc64.c │ │ ├── crc64.h │ │ ├── dump_encode.h │ │ ├── endianconv.c │ │ ├── endianconv.h │ │ ├── intset.c │ │ ├── intset.h │ │ ├── lzf.h │ │ ├── lzfP.h │ │ ├── lzf_c.c │ │ ├── lzf_d.c │ │ ├── rdb.h │ │ ├── rdb_decoder.cpp │ │ ├── rdb_decoder.h │ │ ├── redis_encoder.cpp │ │ ├── redis_encoder.h │ │ ├── redisassert.h │ │ ├── sha1.c │ │ ├── sha1.h │ │ ├── util.h │ │ ├── ziplist.c │ │ ├── ziplist.h │ │ ├── zmalloc.c │ │ └── zmalloc.h │ ├── replication.cpp │ ├── replication.h │ ├── replication2.cpp │ ├── replication_slave2.cpp │ ├── serv.cpp │ ├── serv.h │ ├── ssdb-server.cpp │ ├── ssdb │ │ ├── Makefile │ │ ├── Makefile-ios │ │ ├── README.MD │ │ ├── iterator.cpp │ │ ├── iterator.h │ │ ├── options.cpp │ │ ├── options.h │ │ ├── ssdb.h │ │ ├── ssdb_impl.cpp │ │ ├── ssdb_impl.h │ │ ├── t_cursor.cpp │ │ ├── t_cursor.h │ │ ├── t_eset.cpp │ │ ├── t_hash.cpp │ │ ├── t_hash.h │ │ ├── t_keys.cpp │ │ ├── t_kv.cpp │ │ ├── t_kv.h │ │ ├── t_list.cpp │ │ ├── t_list.h │ │ ├── t_listener.h │ │ ├── t_scan.h │ │ ├── t_set.cpp │ │ ├── t_set.h │ │ ├── t_zset.cpp │ │ ├── t_zset.h │ │ ├── test.cpp │ │ ├── ttl.cpp │ │ └── ttl.h │ └── util │ │ ├── Makefile │ │ ├── Makefile-ios │ │ ├── PTimer.h │ │ ├── app.cpp │ │ ├── app.h │ │ ├── backtrace.cpp │ │ ├── backtrace.h │ │ ├── bytes.cpp │ │ ├── bytes.h │ │ ├── cfree.h │ │ ├── config.cpp │ │ ├── config.h │ │ ├── daemon.h │ │ ├── dump_data.h │ │ ├── endian.h │ │ ├── error.h │ │ ├── file.h │ │ ├── file2.cpp │ │ ├── file2.h │ │ ├── internal_error.cpp │ │ ├── internal_error.h │ │ ├── ip_filter.h │ │ ├── log.cpp │ │ ├── log.h │ │ ├── slowlog.h │ │ ├── sorted_set.cpp │ │ ├── sorted_set.h │ │ ├── strings.h │ │ ├── test_sorted_set.cpp │ │ └── thread.h ├── ssdb.conf ├── ssdb_slave.conf ├── start_ssdb.sh ├── tests │ ├── assets │ │ ├── default.conf │ │ └── ssdb_default.conf │ ├── googletest │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CMakeLists.txt │ │ ├── CTestTestfile.cmake │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── googlemock │ │ │ ├── CHANGES │ │ │ ├── CMakeLists.txt │ │ │ ├── CONTRIBUTORS │ │ │ ├── CTestTestfile.cmake │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── Makefile.am │ │ │ ├── README.md │ │ │ ├── build-aux │ │ │ │ └── .keep │ │ │ ├── configure.ac │ │ │ ├── docs │ │ │ │ ├── CheatSheet.md │ │ │ │ ├── CookBook.md │ │ │ │ ├── DesignDoc.md │ │ │ │ ├── DevGuide.md │ │ │ │ ├── Documentation.md │ │ │ │ ├── ForDummies.md │ │ │ │ ├── FrequentlyAskedQuestions.md │ │ │ │ ├── KnownIssues.md │ │ │ │ ├── v1_5 │ │ │ │ │ ├── CheatSheet.md │ │ │ │ │ ├── CookBook.md │ │ │ │ │ ├── Documentation.md │ │ │ │ │ ├── ForDummies.md │ │ │ │ │ └── FrequentlyAskedQuestions.md │ │ │ │ ├── v1_6 │ │ │ │ │ ├── CheatSheet.md │ │ │ │ │ ├── CookBook.md │ │ │ │ │ ├── Documentation.md │ │ │ │ │ ├── ForDummies.md │ │ │ │ │ └── FrequentlyAskedQuestions.md │ │ │ │ └── v1_7 │ │ │ │ │ ├── CheatSheet.md │ │ │ │ │ ├── CookBook.md │ │ │ │ │ ├── Documentation.md │ │ │ │ │ ├── ForDummies.md │ │ │ │ │ └── FrequentlyAskedQuestions.md │ │ │ ├── gtest │ │ │ │ ├── CTestTestfile.cmake │ │ │ │ └── Makefile │ │ │ ├── include │ │ │ │ └── gmock │ │ │ │ │ ├── gmock-actions.h │ │ │ │ │ ├── gmock-cardinalities.h │ │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ │ ├── gmock-generated-actions.h.pump │ │ │ │ │ ├── gmock-generated-function-mockers.h │ │ │ │ │ ├── gmock-generated-function-mockers.h.pump │ │ │ │ │ ├── gmock-generated-matchers.h │ │ │ │ │ ├── gmock-generated-matchers.h.pump │ │ │ │ │ ├── gmock-generated-nice-strict.h │ │ │ │ │ ├── gmock-generated-nice-strict.h.pump │ │ │ │ │ ├── gmock-matchers.h │ │ │ │ │ ├── gmock-more-actions.h │ │ │ │ │ ├── gmock-more-matchers.h │ │ │ │ │ ├── gmock-spec-builders.h │ │ │ │ │ ├── gmock.h │ │ │ │ │ └── internal │ │ │ │ │ ├── custom │ │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ │ ├── gmock-generated-actions.h.pump │ │ │ │ │ ├── gmock-matchers.h │ │ │ │ │ └── gmock-port.h │ │ │ │ │ ├── gmock-generated-internal-utils.h │ │ │ │ │ ├── gmock-generated-internal-utils.h.pump │ │ │ │ │ ├── gmock-internal-utils.h │ │ │ │ │ └── gmock-port.h │ │ │ ├── make │ │ │ │ └── Makefile │ │ │ ├── msvc │ │ │ │ ├── 2005 │ │ │ │ │ ├── gmock.sln │ │ │ │ │ ├── gmock.vcproj │ │ │ │ │ ├── gmock_config.vsprops │ │ │ │ │ ├── gmock_main.vcproj │ │ │ │ │ └── gmock_test.vcproj │ │ │ │ ├── 2010 │ │ │ │ │ ├── gmock.sln │ │ │ │ │ ├── gmock.vcxproj │ │ │ │ │ ├── gmock_config.props │ │ │ │ │ ├── gmock_main.vcxproj │ │ │ │ │ └── gmock_test.vcxproj │ │ │ │ └── 2015 │ │ │ │ │ ├── gmock.sln │ │ │ │ │ ├── gmock.vcxproj │ │ │ │ │ ├── gmock_config.props │ │ │ │ │ ├── gmock_main.vcxproj │ │ │ │ │ └── gmock_test.vcxproj │ │ │ ├── scripts │ │ │ │ ├── fuse_gmock_files.py │ │ │ │ ├── generator │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README │ │ │ │ │ ├── README.cppclean │ │ │ │ │ ├── cpp │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── ast.py │ │ │ │ │ │ ├── gmock_class.py │ │ │ │ │ │ ├── gmock_class_test.py │ │ │ │ │ │ ├── keywords.py │ │ │ │ │ │ ├── tokenize.py │ │ │ │ │ │ └── utils.py │ │ │ │ │ └── gmock_gen.py │ │ │ │ ├── gmock-config.in │ │ │ │ ├── gmock_doctor.py │ │ │ │ ├── upload.py │ │ │ │ └── upload_gmock.py │ │ │ ├── src │ │ │ │ ├── gmock-all.cc │ │ │ │ ├── gmock-cardinalities.cc │ │ │ │ ├── gmock-internal-utils.cc │ │ │ │ ├── gmock-matchers.cc │ │ │ │ ├── gmock-spec-builders.cc │ │ │ │ ├── gmock.cc │ │ │ │ └── gmock_main.cc │ │ │ └── test │ │ │ │ ├── gmock-actions_test.cc │ │ │ │ ├── gmock-cardinalities_test.cc │ │ │ │ ├── gmock-generated-actions_test.cc │ │ │ │ ├── gmock-generated-function-mockers_test.cc │ │ │ │ ├── gmock-generated-internal-utils_test.cc │ │ │ │ ├── gmock-generated-matchers_test.cc │ │ │ │ ├── gmock-internal-utils_test.cc │ │ │ │ ├── gmock-matchers_test.cc │ │ │ │ ├── gmock-more-actions_test.cc │ │ │ │ ├── gmock-nice-strict_test.cc │ │ │ │ ├── gmock-port_test.cc │ │ │ │ ├── gmock-spec-builders_test.cc │ │ │ │ ├── gmock_all_test.cc │ │ │ │ ├── gmock_ex_test.cc │ │ │ │ ├── gmock_leak_test.py │ │ │ │ ├── gmock_leak_test_.cc │ │ │ │ ├── gmock_link2_test.cc │ │ │ │ ├── gmock_link_test.cc │ │ │ │ ├── gmock_link_test.h │ │ │ │ ├── gmock_output_test.py │ │ │ │ ├── gmock_output_test_.cc │ │ │ │ ├── gmock_output_test_golden.txt │ │ │ │ ├── gmock_stress_test.cc │ │ │ │ ├── gmock_test.cc │ │ │ │ └── gmock_test_utils.py │ │ ├── googletest │ │ │ ├── .gitignore │ │ │ ├── CHANGES │ │ │ ├── CMakeLists.txt │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── Makefile.am │ │ │ ├── README.md │ │ │ ├── build-aux │ │ │ │ └── .keep │ │ │ ├── cmake │ │ │ │ └── internal_utils.cmake │ │ │ ├── codegear │ │ │ │ ├── gtest.cbproj │ │ │ │ ├── gtest.groupproj │ │ │ │ ├── gtest_all.cc │ │ │ │ ├── gtest_link.cc │ │ │ │ ├── gtest_main.cbproj │ │ │ │ └── gtest_unittest.cbproj │ │ │ ├── configure.ac │ │ │ ├── docs │ │ │ │ ├── AdvancedGuide.md │ │ │ │ ├── DevGuide.md │ │ │ │ ├── Documentation.md │ │ │ │ ├── FAQ.md │ │ │ │ ├── Primer.md │ │ │ │ ├── PumpManual.md │ │ │ │ ├── Samples.md │ │ │ │ ├── V1_5_AdvancedGuide.md │ │ │ │ ├── V1_5_Documentation.md │ │ │ │ ├── V1_5_FAQ.md │ │ │ │ ├── V1_5_Primer.md │ │ │ │ ├── V1_5_PumpManual.md │ │ │ │ ├── V1_5_XcodeGuide.md │ │ │ │ ├── V1_6_AdvancedGuide.md │ │ │ │ ├── V1_6_Documentation.md │ │ │ │ ├── V1_6_FAQ.md │ │ │ │ ├── V1_6_Primer.md │ │ │ │ ├── V1_6_PumpManual.md │ │ │ │ ├── V1_6_Samples.md │ │ │ │ ├── V1_6_XcodeGuide.md │ │ │ │ ├── V1_7_AdvancedGuide.md │ │ │ │ ├── V1_7_Documentation.md │ │ │ │ ├── V1_7_FAQ.md │ │ │ │ ├── V1_7_Primer.md │ │ │ │ ├── V1_7_PumpManual.md │ │ │ │ ├── V1_7_Samples.md │ │ │ │ ├── V1_7_XcodeGuide.md │ │ │ │ └── XcodeGuide.md │ │ │ ├── include │ │ │ │ └── gtest │ │ │ │ │ ├── gtest-death-test.h │ │ │ │ │ ├── gtest-message.h │ │ │ │ │ ├── gtest-param-test.h │ │ │ │ │ ├── gtest-param-test.h.pump │ │ │ │ │ ├── gtest-printers.h │ │ │ │ │ ├── gtest-spi.h │ │ │ │ │ ├── gtest-test-part.h │ │ │ │ │ ├── gtest-typed-test.h │ │ │ │ │ ├── gtest.h │ │ │ │ │ ├── gtest_pred_impl.h │ │ │ │ │ ├── gtest_prod.h │ │ │ │ │ └── internal │ │ │ │ │ ├── custom │ │ │ │ │ ├── gtest-port.h │ │ │ │ │ ├── gtest-printers.h │ │ │ │ │ └── gtest.h │ │ │ │ │ ├── gtest-death-test-internal.h │ │ │ │ │ ├── gtest-filepath.h │ │ │ │ │ ├── gtest-internal.h │ │ │ │ │ ├── gtest-linked_ptr.h │ │ │ │ │ ├── gtest-param-util-generated.h │ │ │ │ │ ├── gtest-param-util-generated.h.pump │ │ │ │ │ ├── gtest-param-util.h │ │ │ │ │ ├── gtest-port-arch.h │ │ │ │ │ ├── gtest-port.h │ │ │ │ │ ├── gtest-string.h │ │ │ │ │ ├── gtest-tuple.h │ │ │ │ │ ├── gtest-tuple.h.pump │ │ │ │ │ ├── gtest-type-util.h │ │ │ │ │ └── gtest-type-util.h.pump │ │ │ ├── m4 │ │ │ │ ├── acx_pthread.m4 │ │ │ │ └── gtest.m4 │ │ │ ├── make │ │ │ │ └── Makefile │ │ │ ├── msvc │ │ │ │ ├── gtest-md.sln │ │ │ │ ├── gtest-md.vcproj │ │ │ │ ├── gtest.sln │ │ │ │ ├── gtest.vcproj │ │ │ │ ├── gtest_main-md.vcproj │ │ │ │ ├── gtest_main.vcproj │ │ │ │ ├── gtest_prod_test-md.vcproj │ │ │ │ ├── gtest_prod_test.vcproj │ │ │ │ ├── gtest_unittest-md.vcproj │ │ │ │ └── gtest_unittest.vcproj │ │ │ ├── samples │ │ │ │ ├── prime_tables.h │ │ │ │ ├── sample1.cc │ │ │ │ ├── sample1.h │ │ │ │ ├── sample10_unittest.cc │ │ │ │ ├── sample1_unittest.cc │ │ │ │ ├── sample2.cc │ │ │ │ ├── sample2.h │ │ │ │ ├── sample2_unittest.cc │ │ │ │ ├── sample3-inl.h │ │ │ │ ├── sample3_unittest.cc │ │ │ │ ├── sample4.cc │ │ │ │ ├── sample4.h │ │ │ │ ├── sample4_unittest.cc │ │ │ │ ├── sample5_unittest.cc │ │ │ │ ├── sample6_unittest.cc │ │ │ │ ├── sample7_unittest.cc │ │ │ │ ├── sample8_unittest.cc │ │ │ │ └── sample9_unittest.cc │ │ │ ├── scripts │ │ │ │ ├── common.py │ │ │ │ ├── fuse_gtest_files.py │ │ │ │ ├── gen_gtest_pred_impl.py │ │ │ │ ├── gtest-config.in │ │ │ │ ├── pump.py │ │ │ │ ├── release_docs.py │ │ │ │ ├── test │ │ │ │ │ └── Makefile │ │ │ │ ├── upload.py │ │ │ │ └── upload_gtest.py │ │ │ ├── src │ │ │ │ ├── gtest-all.cc │ │ │ │ ├── gtest-death-test.cc │ │ │ │ ├── gtest-filepath.cc │ │ │ │ ├── gtest-internal-inl.h │ │ │ │ ├── gtest-port.cc │ │ │ │ ├── gtest-printers.cc │ │ │ │ ├── gtest-test-part.cc │ │ │ │ ├── gtest-typed-test.cc │ │ │ │ ├── gtest.cc │ │ │ │ └── gtest_main.cc │ │ │ ├── test │ │ │ │ ├── gtest-death-test_ex_test.cc │ │ │ │ ├── gtest-death-test_test.cc │ │ │ │ ├── gtest-filepath_test.cc │ │ │ │ ├── gtest-linked_ptr_test.cc │ │ │ │ ├── gtest-listener_test.cc │ │ │ │ ├── gtest-message_test.cc │ │ │ │ ├── gtest-options_test.cc │ │ │ │ ├── gtest-param-test2_test.cc │ │ │ │ ├── gtest-param-test_test.cc │ │ │ │ ├── gtest-param-test_test.h │ │ │ │ ├── gtest-port_test.cc │ │ │ │ ├── gtest-printers_test.cc │ │ │ │ ├── gtest-test-part_test.cc │ │ │ │ ├── gtest-tuple_test.cc │ │ │ │ ├── gtest-typed-test2_test.cc │ │ │ │ ├── gtest-typed-test_test.cc │ │ │ │ ├── gtest-typed-test_test.h │ │ │ │ ├── gtest-unittest-api_test.cc │ │ │ │ ├── gtest_all_test.cc │ │ │ │ ├── gtest_break_on_failure_unittest.py │ │ │ │ ├── gtest_break_on_failure_unittest_.cc │ │ │ │ ├── gtest_catch_exceptions_test.py │ │ │ │ ├── gtest_catch_exceptions_test_.cc │ │ │ │ ├── gtest_color_test.py │ │ │ │ ├── gtest_color_test_.cc │ │ │ │ ├── gtest_env_var_test.py │ │ │ │ ├── gtest_env_var_test_.cc │ │ │ │ ├── gtest_environment_test.cc │ │ │ │ ├── gtest_filter_unittest.py │ │ │ │ ├── gtest_filter_unittest_.cc │ │ │ │ ├── gtest_help_test.py │ │ │ │ ├── gtest_help_test_.cc │ │ │ │ ├── gtest_list_tests_unittest.py │ │ │ │ ├── gtest_list_tests_unittest_.cc │ │ │ │ ├── gtest_main_unittest.cc │ │ │ │ ├── gtest_no_test_unittest.cc │ │ │ │ ├── gtest_output_test.py │ │ │ │ ├── gtest_output_test_.cc │ │ │ │ ├── gtest_output_test_golden_lin.txt │ │ │ │ ├── gtest_pred_impl_unittest.cc │ │ │ │ ├── gtest_premature_exit_test.cc │ │ │ │ ├── gtest_prod_test.cc │ │ │ │ ├── gtest_repeat_test.cc │ │ │ │ ├── gtest_shuffle_test.py │ │ │ │ ├── gtest_shuffle_test_.cc │ │ │ │ ├── gtest_sole_header_test.cc │ │ │ │ ├── gtest_stress_test.cc │ │ │ │ ├── gtest_test_utils.py │ │ │ │ ├── gtest_throw_on_failure_ex_test.cc │ │ │ │ ├── gtest_throw_on_failure_test.py │ │ │ │ ├── gtest_throw_on_failure_test_.cc │ │ │ │ ├── gtest_uninitialized_test.py │ │ │ │ ├── gtest_uninitialized_test_.cc │ │ │ │ ├── gtest_unittest.cc │ │ │ │ ├── gtest_xml_outfile1_test_.cc │ │ │ │ ├── gtest_xml_outfile2_test_.cc │ │ │ │ ├── gtest_xml_outfiles_test.py │ │ │ │ ├── gtest_xml_output_unittest.py │ │ │ │ ├── gtest_xml_output_unittest_.cc │ │ │ │ ├── gtest_xml_test_utils.py │ │ │ │ ├── production.cc │ │ │ │ └── production.h │ │ │ └── xcode │ │ │ │ ├── Config │ │ │ │ ├── DebugProject.xcconfig │ │ │ │ ├── FrameworkTarget.xcconfig │ │ │ │ ├── General.xcconfig │ │ │ │ ├── ReleaseProject.xcconfig │ │ │ │ ├── StaticLibraryTarget.xcconfig │ │ │ │ └── TestTarget.xcconfig │ │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ │ ├── Samples │ │ │ │ └── FrameworkSample │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── WidgetFramework.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── runtests.sh │ │ │ │ │ ├── widget.cc │ │ │ │ │ ├── widget.h │ │ │ │ │ └── widget_test.cc │ │ │ │ ├── Scripts │ │ │ │ ├── runtests.sh │ │ │ │ └── versiongenerate.py │ │ │ │ └── gtest.xcodeproj │ │ │ │ └── project.pbxproj │ │ └── travis.sh │ ├── helpers │ │ ├── bg_complex_data.tcl │ │ └── gen_write_load.tcl │ ├── instances.tcl │ ├── qa │ │ ├── fake │ │ │ └── CMakeLists.txt │ │ ├── integration │ │ │ ├── CMakeLists.txt │ │ │ ├── gtest_main.cc │ │ │ ├── hash_test.cc │ │ │ ├── include │ │ │ │ └── ssdb_test.h │ │ │ ├── keys_test.cc │ │ │ ├── kv_test.cc │ │ │ ├── list_test.cc │ │ │ ├── rdb_test.cc │ │ │ ├── replic_test.cc │ │ │ ├── robust_expire_test.cc │ │ │ ├── robust_memory_test.cc │ │ │ ├── robust_test.cc │ │ │ ├── robust_version_test.cc │ │ │ ├── set_test.cc │ │ │ ├── setdump_mthreads_test.cc │ │ │ ├── setread_mthreads_test.cc │ │ │ ├── start_ssdb.sh │ │ │ ├── tcl │ │ │ │ ├── ssdb │ │ │ │ │ ├── expire.tcl │ │ │ │ │ ├── hash.tcl │ │ │ │ │ ├── incr.tcl │ │ │ │ │ ├── init_ssdb.tcl │ │ │ │ │ ├── list-2.tcl │ │ │ │ │ ├── list-3.tcl │ │ │ │ │ ├── list-common.tcl │ │ │ │ │ ├── list.tcl │ │ │ │ │ ├── migrate.tcl │ │ │ │ │ ├── other.tcl │ │ │ │ │ ├── repopid.tcl │ │ │ │ │ ├── scan.tcl │ │ │ │ │ ├── set.tcl │ │ │ │ │ ├── string.tcl │ │ │ │ │ ├── zset-2.tcl │ │ │ │ │ └── zset.tcl │ │ │ │ ├── support │ │ │ │ │ ├── redis.tcl │ │ │ │ │ ├── server.tcl │ │ │ │ │ ├── ssdb_default.conf │ │ │ │ │ ├── test.tcl │ │ │ │ │ ├── tmpfile.tcl │ │ │ │ │ └── util.tcl │ │ │ │ └── test_helper.tcl │ │ │ └── zset_test.cc │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── codec │ │ │ ├── decode_test.cpp │ │ │ └── encode_test.cpp │ │ │ ├── gcov.sh │ │ │ ├── gtest_main.cc │ │ │ └── include │ │ │ └── ssdb_test.h │ ├── support │ │ ├── redis.tcl │ │ ├── server.tcl │ │ ├── test.tcl │ │ ├── tmpfile.tcl │ │ └── util.tcl │ ├── test_helper.tcl │ └── unit │ │ ├── bitops.tcl │ │ ├── dump.tcl │ │ ├── expire.tcl │ │ ├── other.tcl │ │ ├── protocol.tcl │ │ ├── quit.tcl │ │ ├── scan.tcl │ │ ├── scripting.tcl │ │ ├── slowlog.tcl │ │ ├── sort.tcl │ │ └── type │ │ ├── hash.tcl │ │ ├── incr.tcl │ │ ├── list-2.tcl │ │ ├── list-3.tcl │ │ ├── list-common.tcl │ │ ├── list.tcl │ │ ├── set.tcl │ │ ├── string.tcl │ │ └── zset.tcl ├── tools │ ├── Makefile │ ├── leveldb-import.cpp │ ├── redis-import.php │ ├── ssdb-bench.cpp │ ├── ssdb-cli │ ├── ssdb-cli.bat │ ├── ssdb-cli.cpy │ ├── ssdb-dump.cpp │ ├── ssdb-migrate.cpp │ ├── ssdb-repair.cpp │ ├── ssdb.sh │ ├── ssdb_cli │ │ ├── cluster.cpy │ │ ├── exporter.cpy │ │ ├── flushdb.cpy │ │ ├── importer.cpy │ │ ├── nagios.cpy │ │ └── util.cpy │ ├── test_slow_client.php │ └── unittest.php └── version └── utils ├── deploy_redis.sh ├── redis.conf.template └── ssdb.conf.template /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/README.md -------------------------------------------------------------------------------- /docs/QUICKSTART.md: -------------------------------------------------------------------------------- 1 | # Quick Start 2 | 3 | -------------------------------------------------------------------------------- /docs/fundamental.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/docs/fundamental.jpg -------------------------------------------------------------------------------- /swap-redis-4.0.0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/.gitignore -------------------------------------------------------------------------------- /swap-redis-4.0.0/00-RELEASENOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/00-RELEASENOTES -------------------------------------------------------------------------------- /swap-redis-4.0.0/BUGS: -------------------------------------------------------------------------------- 1 | Please check https://github.com/antirez/redis/issues 2 | -------------------------------------------------------------------------------- /swap-redis-4.0.0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/CMakeLists.txt -------------------------------------------------------------------------------- /swap-redis-4.0.0/CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/CONTRIBUTING -------------------------------------------------------------------------------- /swap-redis-4.0.0/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/COPYING -------------------------------------------------------------------------------- /swap-redis-4.0.0/INSTALL: -------------------------------------------------------------------------------- 1 | See README 2 | -------------------------------------------------------------------------------- /swap-redis-4.0.0/MANIFESTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/MANIFESTO -------------------------------------------------------------------------------- /swap-redis-4.0.0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/Makefile -------------------------------------------------------------------------------- /swap-redis-4.0.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/README.md -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/Makefile -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/README.md -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/hiredis/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/hiredis/.gitignore -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/hiredis/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/hiredis/.travis.yml -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/hiredis/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/hiredis/CHANGELOG.md -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/hiredis/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/hiredis/COPYING -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/hiredis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/hiredis/Makefile -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/hiredis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/hiredis/README.md -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/hiredis/adapters/ae.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/hiredis/adapters/ae.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/hiredis/adapters/glib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/hiredis/adapters/glib.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/hiredis/adapters/ivykis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/hiredis/adapters/ivykis.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/hiredis/adapters/libev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/hiredis/adapters/libev.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/hiredis/adapters/libevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/hiredis/adapters/libevent.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/hiredis/adapters/libuv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/hiredis/adapters/libuv.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/hiredis/adapters/macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/hiredis/adapters/macosx.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/hiredis/adapters/qt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/hiredis/adapters/qt.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/hiredis/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/hiredis/appveyor.yml -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/hiredis/async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/hiredis/async.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/hiredis/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/hiredis/async.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/hiredis/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/hiredis/dict.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/hiredis/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/hiredis/dict.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/hiredis/examples/example-ae.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/hiredis/examples/example-ae.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/hiredis/examples/example-qt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/hiredis/examples/example-qt.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/hiredis/examples/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/hiredis/examples/example.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/hiredis/fmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/hiredis/fmacros.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/hiredis/hiredis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/hiredis/hiredis.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/hiredis/hiredis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/hiredis/hiredis.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/hiredis/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/hiredis/net.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/hiredis/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/hiredis/net.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/hiredis/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/hiredis/read.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/hiredis/read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/hiredis/read.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/hiredis/sds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/hiredis/sds.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/hiredis/sds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/hiredis/sds.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/hiredis/sdsalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/hiredis/sdsalloc.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/hiredis/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/hiredis/test.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/hiredis/win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/hiredis/win32.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/.autom4te.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/.autom4te.cfg -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/.gitignore -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/COPYING -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/ChangeLog -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/INSTALL -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/Makefile.in -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/README -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/VERSION -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/autogen.sh -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/bin/jemalloc.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/bin/jemalloc.sh.in -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/bin/jeprof.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/bin/jeprof.in -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/config.guess -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/config.stamp.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/config.sub -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/configure -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/configure.ac -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/coverage.sh -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/doc/html.xsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/doc/html.xsl.in -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/doc/jemalloc.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/doc/jemalloc.xml.in -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/doc/manpages.xsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/doc/manpages.xsl.in -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/doc/stylesheet.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/doc/stylesheet.xsl -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/install-sh -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/jemalloc.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/jemalloc.pc.in -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/src/arena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/src/arena.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/src/atomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/src/atomic.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/src/base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/src/base.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/src/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/src/bitmap.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/src/chunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/src/chunk.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/src/chunk_dss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/src/chunk_dss.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/src/chunk_mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/src/chunk_mmap.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/src/ckh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/src/ckh.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/src/ctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/src/ctl.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/src/extent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/src/extent.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/src/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/src/hash.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/src/huge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/src/huge.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/src/jemalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/src/jemalloc.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/src/mb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/src/mb.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/src/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/src/mutex.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/src/pages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/src/pages.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/src/prof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/src/prof.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/src/quarantine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/src/quarantine.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/src/rtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/src/rtree.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/src/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/src/stats.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/src/tcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/src/tcache.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/src/tsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/src/tsd.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/src/util.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/src/valgrind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/src/valgrind.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/src/zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/src/zone.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/test/src/SFMT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/test/src/SFMT.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/test/src/btalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/test/src/btalloc.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/test/src/btalloc_0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/test/src/btalloc_0.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/test/src/btalloc_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/test/src/btalloc_1.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/test/src/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/test/src/math.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/test/src/mq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/test/src/mq.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/test/src/mtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/test/src/mtx.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/test/src/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/test/src/test.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/test/src/thd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/test/src/thd.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/test/src/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/test/src/timer.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/test/test.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/test/test.sh.in -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/test/unit/SFMT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/test/unit/SFMT.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/test/unit/atomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/test/unit/atomic.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/test/unit/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/test/unit/bitmap.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/test/unit/ckh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/test/unit/ckh.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/test/unit/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/test/unit/hash.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/test/unit/junk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/test/unit/junk.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/test/unit/junk_free.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/test/unit/junk_free.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/test/unit/lg_chunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/test/unit/lg_chunk.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/test/unit/mallctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/test/unit/mallctl.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/test/unit/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/test/unit/math.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/test/unit/mq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/test/unit/mq.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/test/unit/mtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/test/unit/mtx.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/test/unit/ql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/test/unit/ql.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/test/unit/qr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/test/unit/qr.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/test/unit/rb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/test/unit/rb.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/test/unit/rtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/test/unit/rtree.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/test/unit/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/test/unit/stats.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/test/unit/tsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/test/unit/tsd.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/test/unit/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/test/unit/util.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/jemalloc/test/unit/zero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/jemalloc/test/unit/zero.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/linenoise/.gitignore: -------------------------------------------------------------------------------- 1 | linenoise_example 2 | *.dSYM 3 | history.txt 4 | -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/linenoise/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/linenoise/Makefile -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/linenoise/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/linenoise/README.markdown -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/linenoise/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/linenoise/example.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/linenoise/linenoise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/linenoise/linenoise.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/linenoise/linenoise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/linenoise/linenoise.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/COPYRIGHT -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/HISTORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/HISTORY -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/INSTALL -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/Makefile -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/README -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/doc/contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/doc/contents.html -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/doc/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/doc/cover.png -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/doc/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/doc/logo.gif -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/doc/lua.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/doc/lua.1 -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/doc/lua.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/doc/lua.css -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/doc/lua.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/doc/lua.html -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/doc/luac.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/doc/luac.1 -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/doc/luac.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/doc/luac.html -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/doc/manual.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/doc/manual.css -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/doc/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/doc/manual.html -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/doc/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/doc/readme.html -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/etc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/etc/Makefile -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/etc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/etc/README -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/etc/all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/etc/all.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/etc/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/etc/lua.hpp -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/etc/lua.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/etc/lua.ico -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/etc/lua.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/etc/lua.pc -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/etc/luavs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/etc/luavs.bat -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/etc/min.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/etc/min.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/etc/noparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/etc/noparser.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/etc/strict.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/etc/strict.lua -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/Makefile -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/fpconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/fpconv.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/fpconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/fpconv.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/lapi.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/lapi.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/lauxlib.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/lauxlib.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/lbaselib.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/lcode.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/lcode.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/ldblib.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/ldebug.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/ldebug.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/ldo.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/ldo.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/ldump.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/lfunc.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/lfunc.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/lgc.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/lgc.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/linit.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/liolib.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/llex.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/llex.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/llimits.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/lmathlib.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/lmem.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/lmem.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/loadlib.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/lobject.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/lobject.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/lopcodes.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/lopcodes.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/loslib.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/lparser.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/lparser.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/lstate.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/lstate.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/lstring.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/lstring.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/lstrlib.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/ltable.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/ltable.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/ltablib.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/ltm.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/ltm.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/lua.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/lua.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/lua_bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/lua_bit.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/lua_cjson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/lua_cjson.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/lua_cmsgpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/lua_cmsgpack.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/lua_struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/lua_struct.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/luac.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/luaconf.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/lualib.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/lundump.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/lundump.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/lvm.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/lvm.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/lzio.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/lzio.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/print.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/strbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/strbuf.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/src/strbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/src/strbuf.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/test/README -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/test/bisect.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/test/bisect.lua -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/test/cf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/test/cf.lua -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/test/echo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/test/echo.lua -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/test/env.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/test/env.lua -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/test/factorial.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/test/factorial.lua -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/test/fib.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/test/fib.lua -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/test/fibfor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/test/fibfor.lua -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/test/globals.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/test/globals.lua -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/test/hello.lua: -------------------------------------------------------------------------------- 1 | -- the first program in every language 2 | 3 | io.write("Hello world, from ",_VERSION,"!\n") 4 | -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/test/life.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/test/life.lua -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/test/luac.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/test/luac.lua -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/test/printf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/test/printf.lua -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/test/readonly.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/test/readonly.lua -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/test/sieve.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/test/sieve.lua -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/test/sort.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/test/sort.lua -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/test/table.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/test/table.lua -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/test/trace-calls.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/test/trace-calls.lua -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/test/trace-globals.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/test/trace-globals.lua -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/lua/test/xd.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/lua/test/xd.lua -------------------------------------------------------------------------------- /swap-redis-4.0.0/deps/update-jemalloc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/deps/update-jemalloc.sh -------------------------------------------------------------------------------- /swap-redis-4.0.0/prepareCmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/prepareCmake.sh -------------------------------------------------------------------------------- /swap-redis-4.0.0/redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/redis.conf -------------------------------------------------------------------------------- /swap-redis-4.0.0/runtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/runtest -------------------------------------------------------------------------------- /swap-redis-4.0.0/runtest-cluster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/runtest-cluster -------------------------------------------------------------------------------- /swap-redis-4.0.0/runtest-sentinel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/runtest-sentinel -------------------------------------------------------------------------------- /swap-redis-4.0.0/runtest_qa_cluster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/runtest_qa_cluster -------------------------------------------------------------------------------- /swap-redis-4.0.0/runtest_qa_redis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/runtest_qa_redis -------------------------------------------------------------------------------- /swap-redis-4.0.0/sentinel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/sentinel.conf -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/.gitignore -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/Makefile -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/adlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/adlist.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/adlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/adlist.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/ae.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/ae.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/ae.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/ae.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/ae_epoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/ae_epoll.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/ae_evport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/ae_evport.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/ae_kqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/ae_kqueue.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/ae_select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/ae_select.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/anet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/anet.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/anet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/anet.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/aof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/aof.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/asciilogo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/asciilogo.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/atomicvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/atomicvar.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/bio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/bio.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/bio.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/bitops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/bitops.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/blocked.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/blocked.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/childinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/childinfo.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/cluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/cluster.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/cluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/cluster.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/cluster_v3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/cluster_v3.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/cluster_v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/cluster_v3.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/config.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/config.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/crc16.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/crc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/crc64.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/crc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/crc64.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/db.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/debug.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/debugmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/debugmacro.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/defrag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/defrag.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/dict.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/dict.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/endianconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/endianconv.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/endianconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/endianconv.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/evict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/evict.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/expire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/expire.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/fmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/fmacros.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/geo.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/geo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/geo.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/geohash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/geohash.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/geohash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/geohash.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/geohash_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/geohash_helper.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/geohash_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/geohash_helper.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/help.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/hyperloglog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/hyperloglog.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/intset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/intset.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/intset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/intset.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/latency.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/latency.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/latency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/latency.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/lazyfree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/lazyfree.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/lzf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/lzf.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/lzfP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/lzfP.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/lzf_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/lzf_c.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/lzf_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/lzf_d.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/memprotect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/memprotect.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/memprotect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/memprotect.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/memtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/memtest.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/mkreleasehdr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/mkreleasehdr.sh -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/module.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/modules/.gitignore: -------------------------------------------------------------------------------- 1 | *.so 2 | *.xo 3 | -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/modules/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/modules/Makefile -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/modules/gendoc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/modules/gendoc.rb -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/modules/helloblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/modules/helloblock.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/modules/hellotype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/modules/hellotype.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/modules/helloworld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/modules/helloworld.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/modules/testmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/modules/testmodule.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/multi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/multi.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/networking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/networking.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/notify.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/object.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/pqsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/pqsort.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/pqsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/pqsort.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/pubsub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/pubsub.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/quicklist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/quicklist.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/quicklist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/quicklist.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/rand.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/rand.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/rax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/rax.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/rax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/rax.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/rax_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/rax_malloc.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/rdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/rdb.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/rdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/rdb.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/redis-benchmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/redis-benchmark.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/redis-check-aof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/redis-check-aof.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/redis-check-rdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/redis-check-rdb.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/redis-cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/redis-cli.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/redis-trib.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/redis-trib.rb -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/redisassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/redisassert.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/redismodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/redismodule.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/release.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/release.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/replication.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/replication.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/rio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/rio.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/rio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/rio.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/scripting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/scripting.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/sds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/sds.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/sds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/sds.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/sdsalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/sdsalloc.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/sentinel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/sentinel.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/server.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/server.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/setproctitle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/setproctitle.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/sha1.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/sha1.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/siphash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/siphash.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/slowlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/slowlog.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/slowlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/slowlog.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/solarisfixes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/solarisfixes.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/sort.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/sparkline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/sparkline.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/sparkline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/sparkline.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/syncio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/syncio.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/t_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/t_hash.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/t_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/t_list.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/t_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/t_set.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/t_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/t_string.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/t_zset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/t_zset.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/testhelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/testhelp.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/unittest/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/unittest/make.sh -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/unittest/sds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/unittest/sds.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/unittest/sds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/unittest/sds.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/unittest/test_mem_crash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/unittest/test_mem_crash.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/unittest/testhotpool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/unittest/testhotpool.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/util.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/util.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/valgrind.sup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/valgrind.sup -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/version.h: -------------------------------------------------------------------------------- 1 | #define REDIS_VERSION "4.0.2" 2 | -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/ziplist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/ziplist.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/ziplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/ziplist.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/zipmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/zipmap.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/zipmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/zipmap.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/zmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/zmalloc.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/src/zmalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/src/zmalloc.h -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/assets/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/assets/default.conf -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/assets/encodings.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/assets/encodings.rdb -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/assets/hash-zipmap.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/assets/hash-zipmap.rdb -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/cluster/cluster.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/cluster/cluster.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/cluster/run.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/cluster/run.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/cluster/tests/00-base.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/cluster/tests/00-base.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/cluster/tests/01-faildet.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/cluster/tests/01-faildet.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/cluster/tests/02-failover.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/cluster/tests/02-failover.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/cluster/tests/09-pubsub.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/cluster/tests/09-pubsub.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/cluster/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | redis_* 2 | sentinel_* 3 | -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/helpers/bg_complex_data.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/helpers/bg_complex_data.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/helpers/gen_write_load.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/helpers/gen_write_load.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/instances.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/instances.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/integration/aof-race.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/integration/aof-race.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/integration/aof.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/integration/aof.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/integration/logging.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/integration/logging.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/integration/psync2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/integration/psync2.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/integration/rdb.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/integration/rdb.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/integration/redis-cli.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/integration/redis-cli.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/integration/replication-2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/integration/replication-2.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/integration/replication-3.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/integration/replication-3.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/integration/replication-4.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/integration/replication-4.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/integration/replication.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/integration/replication.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/qa/integration/tests/cluster/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | redis_* 2 | sentinel_* 3 | -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/sentinel/run.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/sentinel/run.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/sentinel/tests/00-base.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/sentinel/tests/00-base.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/sentinel/tests/03-runtime-reconf.tcl: -------------------------------------------------------------------------------- 1 | # Test runtime reconfiguration command SENTINEL SET. 2 | -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/sentinel/tests/05-manual.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/sentinel/tests/05-manual.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/sentinel/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | redis_* 2 | sentinel_* 3 | -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/support/cluster.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/support/cluster.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/support/redis.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/support/redis.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/support/server.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/support/server.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/support/test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/support/test.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/support/tmpfile.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/support/tmpfile.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/support/util.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/support/util.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/test_helper.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/test_helper.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/unit/aofrw.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/unit/aofrw.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/unit/auth.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/unit/auth.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/unit/bitfield.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/unit/bitfield.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/unit/bitops.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/unit/bitops.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/unit/dump.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/unit/dump.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/unit/expire.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/unit/expire.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/unit/geo.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/unit/geo.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/unit/hyperloglog.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/unit/hyperloglog.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/unit/introspection-2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/unit/introspection-2.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/unit/introspection.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/unit/introspection.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/unit/keyspace.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/unit/keyspace.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/unit/latency-monitor.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/unit/latency-monitor.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/unit/lazyfree.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/unit/lazyfree.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/unit/limits.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/unit/limits.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/unit/maxmemory.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/unit/maxmemory.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/unit/memefficiency.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/unit/memefficiency.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/unit/multi.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/unit/multi.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/unit/obuf-limits.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/unit/obuf-limits.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/unit/other.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/unit/other.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/unit/printver.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/unit/printver.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/unit/protocol.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/unit/protocol.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/unit/pubsub.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/unit/pubsub.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/unit/quit.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/unit/quit.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/unit/scan.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/unit/scan.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/unit/scripting.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/unit/scripting.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/unit/slowlog.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/unit/slowlog.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/unit/sort.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/unit/sort.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/unit/type/hash.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/unit/type/hash.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/unit/type/incr.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/unit/type/incr.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/unit/type/list-2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/unit/type/list-2.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/unit/type/list-3.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/unit/type/list-3.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/unit/type/list-common.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/unit/type/list-common.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/unit/type/list.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/unit/type/list.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/unit/type/set.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/unit/type/set.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/unit/type/string.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/unit/type/string.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/unit/type/zset.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/unit/type/zset.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/tests/unit/wait.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/tests/unit/wait.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/utils/build-static-symbols.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/utils/build-static-symbols.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/utils/cluster_fail_time.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/utils/cluster_fail_time.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/utils/corrupt_rdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/utils/corrupt_rdb.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/utils/create-cluster/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/utils/create-cluster/.gitignore -------------------------------------------------------------------------------- /swap-redis-4.0.0/utils/create-cluster/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/utils/create-cluster/README -------------------------------------------------------------------------------- /swap-redis-4.0.0/utils/create-cluster/create-cluster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/utils/create-cluster/create-cluster -------------------------------------------------------------------------------- /swap-redis-4.0.0/utils/generate-command-help.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/utils/generate-command-help.rb -------------------------------------------------------------------------------- /swap-redis-4.0.0/utils/hashtable/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/utils/hashtable/README -------------------------------------------------------------------------------- /swap-redis-4.0.0/utils/hashtable/rehashing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/utils/hashtable/rehashing.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/utils/hyperloglog/.gitignore: -------------------------------------------------------------------------------- 1 | *.txt 2 | -------------------------------------------------------------------------------- /swap-redis-4.0.0/utils/hyperloglog/hll-err.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/utils/hyperloglog/hll-err.rb -------------------------------------------------------------------------------- /swap-redis-4.0.0/utils/install_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/utils/install_server.sh -------------------------------------------------------------------------------- /swap-redis-4.0.0/utils/lru/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/utils/lru/README -------------------------------------------------------------------------------- /swap-redis-4.0.0/utils/lru/lfu-simulation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/utils/lru/lfu-simulation.c -------------------------------------------------------------------------------- /swap-redis-4.0.0/utils/lru/test-lru.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/utils/lru/test-lru.rb -------------------------------------------------------------------------------- /swap-redis-4.0.0/utils/redis-copy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/utils/redis-copy.rb -------------------------------------------------------------------------------- /swap-redis-4.0.0/utils/redis-sha1.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/utils/redis-sha1.rb -------------------------------------------------------------------------------- /swap-redis-4.0.0/utils/redis_init_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/utils/redis_init_script -------------------------------------------------------------------------------- /swap-redis-4.0.0/utils/redis_init_script.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/utils/redis_init_script.tpl -------------------------------------------------------------------------------- /swap-redis-4.0.0/utils/releasetools/changelog.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/utils/releasetools/changelog.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/utils/speed-regression.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/utils/speed-regression.tcl -------------------------------------------------------------------------------- /swap-redis-4.0.0/utils/whatisdoing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-redis-4.0.0/utils/whatisdoing.sh -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/.gitignore -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/CMakeLists.txt -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/ChangeLog -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/Dockerfile -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/LICENSE -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/LICENSE_SSDB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/LICENSE_SSDB -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/README.md -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/api/README.md: -------------------------------------------------------------------------------- 1 | See https://github.com/ssdb 2 | -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/api/cpy/SSDB.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/api/cpy/SSDB.cpy -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/api/cpy/demo.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/api/cpy/demo.cpy -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/api/python/SSDB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/api/python/SSDB.py -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/api/python/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/api/python/demo.py -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/build.sh -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/CHANGES -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/LICENSE -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/Makefile -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/Makefile-libbz2_so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/Makefile-libbz2_so -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/README -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/README.XML.STUFF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/README.XML.STUFF -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/blocksort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/blocksort.c -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/bz-common.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/bz-common.xsl -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/bz-fo.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/bz-fo.xsl -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/bz-html.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/bz-html.xsl -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/bzdiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/bzdiff -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/bzdiff.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/bzdiff.1 -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/bzgrep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/bzgrep -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/bzgrep.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/bzgrep.1 -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/bzip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/bzip.css -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/bzip2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/bzip2.1 -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/bzip2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/bzip2.c -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/bzip2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/bzip2.txt -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/bzip2recover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/bzip2recover.c -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/bzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/bzlib.c -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/bzlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/bzlib.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/bzlib_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/bzlib_private.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/bzmore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/bzmore -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/bzmore.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/bzmore.1 -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/compress.c -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/crctable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/crctable.c -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/decompress.c -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/dlltest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/dlltest.c -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/dlltest.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/dlltest.dsp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/entities.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/entities.xml -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/format.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/format.pl -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/huffman.c -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/libbz2.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/libbz2.def -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/libbz2.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/libbz2.dsp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/makefile.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/makefile.msc -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/manual.html -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/manual.pdf -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/manual.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/manual.ps -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/manual.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/manual.xml -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/mk251.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/mk251.c -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/randtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/randtable.c -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/sample1.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/sample1.bz2 -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/sample1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/sample1.ref -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/sample2.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/sample2.bz2 -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/sample2.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/sample2.ref -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/sample3.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/sample3.bz2 -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/sample3.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/sample3.ref -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/spewG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/spewG.c -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/unzcrash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/unzcrash.c -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/words0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/words0 -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/words1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/words1 -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/words2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/words2 -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/words3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/words3 -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/bzip2-1.0.6/xmlproc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/bzip2-1.0.6/xmlproc.sh -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/cpy/Eval.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/cpy/Eval.g -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/cpy/Eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/cpy/Eval.py -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/cpy/Expr.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/cpy/Expr.g -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/cpy/ExprLexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/cpy/ExprLexer.py -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/cpy/ExprParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/cpy/ExprParser.py -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/cpy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/cpy/Makefile -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/cpy/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/cpy/Readme.txt -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/cpy/antlr3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/cpy/antlr3/__init__.py -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/cpy/antlr3/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/cpy/antlr3/compat.py -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/cpy/antlr3/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/cpy/antlr3/constants.py -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/cpy/antlr3/dfa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/cpy/antlr3/dfa.py -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/cpy/antlr3/dottreegen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/cpy/antlr3/dottreegen.py -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/cpy/antlr3/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/cpy/antlr3/exceptions.py -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/cpy/antlr3/extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/cpy/antlr3/extras.py -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/cpy/antlr3/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/cpy/antlr3/main.py -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/cpy/antlr3/recognizers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/cpy/antlr3/recognizers.py -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/cpy/antlr3/streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/cpy/antlr3/streams.py -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/cpy/antlr3/tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/cpy/antlr3/tokens.py -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/cpy/antlr3/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/cpy/antlr3/tree.py -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/cpy/antlr3/treewizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/cpy/antlr3/treewizard.py -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/cpy/cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/cpy/cpy -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/cpy/cpy.bat: -------------------------------------------------------------------------------- 1 | 2 | @echo off 3 | python %~dp0cpy.py %1 %2 %3 %4 %5 %6 %7 %8 %9 4 | -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/cpy/cpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/cpy/cpy.py -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/cpy/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/cpy/engine.py -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/cpy/samples/class.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/cpy/samples/class.cpy -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/cpy/samples/extends.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/cpy/samples/extends.cpy -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/cpy/samples/foreach.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/cpy/samples/foreach.cpy -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/cpy/samples/function.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/cpy/samples/function.cpy -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/cpy/samples/hello.cpy: -------------------------------------------------------------------------------- 1 | 2 | printf("Hello World!\n"); 3 | -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/cpy/samples/list.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/cpy/samples/list.cpy -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/cpy/samples/object.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/cpy/samples/object.cpy -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/cpy/samples/simple_client.cpy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/cpy/samples/simple_server.cpy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/cpy/samples/stdin.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/cpy/samples/stdin.cpy -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/deps/cpy/samples/test.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/deps/cpy/samples/test.cpy -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/docs/README.md -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/docs/logo.png -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/docs/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/docs/logo.svg -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/runtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/runtest.sh -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/runtest_qa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/runtest_qa.sh -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/Makefile -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/bproc_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/bproc_data.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/client/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/client/Doxyfile -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/client/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/client/Makefile -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/client/README.md -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/client/SSDB_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/client/SSDB_client.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/client/SSDB_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/client/SSDB_impl.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/client/SSDB_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/client/SSDB_impl.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/client/demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/client/demo.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/client/hello-ssdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/client/hello-ssdb.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/codec/decode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/codec/decode.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/codec/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/codec/decode.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/codec/encode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/codec/encode.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/codec/encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/codec/encode.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/codec/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/codec/util.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/codec/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/codec/util.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/common/context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/common/context.hpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/include.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/net/.gitignore: -------------------------------------------------------------------------------- 1 | test 2 | 3 | -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/net/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/net/Makefile -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/net/fde.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/net/fde.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/net/fde.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/net/fde.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/net/fde_epoll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/net/fde_epoll.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/net/fde_select.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/net/fde_select.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/net/link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/net/link.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/net/link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/net/link.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/net/link_redis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/net/link_redis.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/net/link_redis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/net/link_redis.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/net/proc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/net/proc.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/net/proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/net/proc.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/net/redis/redis_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/net/redis/redis_client.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/net/redis/redis_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/net/redis/redis_client.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/net/redis/redis_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/net/redis/redis_stream.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/net/redis/redis_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/net/redis/redis_stream.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/net/redis/reponse_redis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/net/redis/reponse_redis.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/net/redis/transfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/net/redis/transfer.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/net/redis/transfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/net/redis/transfer.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/net/resp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/net/resp.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/net/resp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/net/resp.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/net/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/net/server.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/net/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/net/server.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/net/test.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/net/test.conf -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/net/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/net/test.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/net/test2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/net/test2.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/net/test_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/net/test_link.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/net/worker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/net/worker.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/net/worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/net/worker.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/proc_hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/proc_hash.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/proc_kv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/proc_kv.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/proc_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/proc_queue.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/proc_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/proc_set.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/proc_zset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/proc_zset.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/redis/crc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/redis/crc/.gitignore -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/redis/crc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/redis/crc/Makefile -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/redis/crc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/redis/crc/README.md -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/redis/crc/crc16speed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/redis/crc/crc16speed.c -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/redis/crc/crc16speed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/redis/crc/crc16speed.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/redis/crc/crc64speed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/redis/crc/crc64speed.c -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/redis/crc/crc64speed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/redis/crc/crc64speed.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/redis/crc/crcspeed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/redis/crc/crcspeed.c -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/redis/crc/crcspeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/redis/crc/crcspeed.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/redis/crc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/redis/crc/main.c -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/redis/crc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/redis/crc64.c -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/redis/crc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/redis/crc64.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/redis/dump_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/redis/dump_encode.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/redis/endianconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/redis/endianconv.c -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/redis/endianconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/redis/endianconv.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/redis/intset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/redis/intset.c -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/redis/intset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/redis/intset.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/redis/lzf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/redis/lzf.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/redis/lzfP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/redis/lzfP.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/redis/lzf_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/redis/lzf_c.c -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/redis/lzf_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/redis/lzf_d.c -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/redis/rdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/redis/rdb.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/redis/rdb_decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/redis/rdb_decoder.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/redis/rdb_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/redis/rdb_decoder.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/redis/redis_encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/redis/redis_encoder.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/redis/redis_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/redis/redis_encoder.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/redis/redisassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/redis/redisassert.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/redis/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/redis/sha1.c -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/redis/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/redis/sha1.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/redis/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/redis/util.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/redis/ziplist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/redis/ziplist.c -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/redis/ziplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/redis/ziplist.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/redis/zmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/redis/zmalloc.c -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/redis/zmalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/redis/zmalloc.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/replication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/replication.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/replication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/replication.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/replication2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/replication2.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/replication_slave2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/replication_slave2.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/serv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/serv.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/serv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/serv.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/ssdb-server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/ssdb-server.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/ssdb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/ssdb/Makefile -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/ssdb/Makefile-ios: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/ssdb/Makefile-ios -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/ssdb/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/ssdb/README.MD -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/ssdb/iterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/ssdb/iterator.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/ssdb/iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/ssdb/iterator.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/ssdb/options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/ssdb/options.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/ssdb/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/ssdb/options.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/ssdb/ssdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/ssdb/ssdb.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/ssdb/ssdb_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/ssdb/ssdb_impl.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/ssdb/ssdb_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/ssdb/ssdb_impl.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/ssdb/t_cursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/ssdb/t_cursor.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/ssdb/t_cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/ssdb/t_cursor.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/ssdb/t_eset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/ssdb/t_eset.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/ssdb/t_hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/ssdb/t_hash.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/ssdb/t_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/ssdb/t_hash.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/ssdb/t_keys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/ssdb/t_keys.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/ssdb/t_kv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/ssdb/t_kv.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/ssdb/t_kv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/ssdb/t_kv.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/ssdb/t_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/ssdb/t_list.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/ssdb/t_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/ssdb/t_list.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/ssdb/t_listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/ssdb/t_listener.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/ssdb/t_scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/ssdb/t_scan.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/ssdb/t_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/ssdb/t_set.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/ssdb/t_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/ssdb/t_set.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/ssdb/t_zset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/ssdb/t_zset.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/ssdb/t_zset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/ssdb/t_zset.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/ssdb/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/ssdb/test.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/ssdb/ttl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/ssdb/ttl.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/ssdb/ttl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/ssdb/ttl.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/util/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/util/Makefile -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/util/Makefile-ios: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/util/Makefile-ios -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/util/PTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/util/PTimer.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/util/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/util/app.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/util/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/util/app.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/util/backtrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/util/backtrace.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/util/backtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/util/backtrace.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/util/bytes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/util/bytes.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/util/bytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/util/bytes.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/util/cfree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/util/cfree.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/util/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/util/config.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/util/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/util/config.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/util/daemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/util/daemon.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/util/dump_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/util/dump_data.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/util/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/util/endian.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/util/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/util/error.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/util/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/util/file.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/util/file2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/util/file2.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/util/file2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/util/file2.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/util/internal_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/util/internal_error.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/util/internal_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/util/internal_error.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/util/ip_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/util/ip_filter.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/util/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/util/log.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/util/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/util/log.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/util/slowlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/util/slowlog.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/util/sorted_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/util/sorted_set.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/util/sorted_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/util/sorted_set.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/util/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/util/strings.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/util/test_sorted_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/util/test_sorted_set.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/src/util/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/src/util/thread.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/ssdb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/ssdb.conf -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/ssdb_slave.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/ssdb_slave.conf -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/start_ssdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/start_ssdb.sh -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/assets/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/assets/default.conf -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/assets/ssdb_default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/assets/ssdb_default.conf -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/googletest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/googletest/.gitignore -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/googletest/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/googletest/.travis.yml -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/googletest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/googletest/CMakeLists.txt -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/googletest/CTestTestfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/googletest/CTestTestfile.cmake -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/googletest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/googletest/Makefile -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/googletest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/googletest/README.md -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/googletest/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/googletest/appveyor.yml -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/googletest/googlemock/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/googletest/googlemock/CHANGES -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/googletest/googlemock/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/googletest/googlemock/LICENSE -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/googletest/googlemock/build-aux/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/googletest/googlemock/scripts/generator/cpp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/googletest/googletest/.gitignore: -------------------------------------------------------------------------------- 1 | # python 2 | *.pyc 3 | -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/googletest/googletest/build-aux/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/googletest/travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/googletest/travis.sh -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/helpers/bg_complex_data.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/helpers/bg_complex_data.tcl -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/helpers/gen_write_load.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/helpers/gen_write_load.tcl -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/instances.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/instances.tcl -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/qa/fake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/qa/fake/CMakeLists.txt -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/qa/integration/hash_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/qa/integration/hash_test.cc -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/qa/integration/keys_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/qa/integration/keys_test.cc -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/qa/integration/kv_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/qa/integration/kv_test.cc -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/qa/integration/list_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/qa/integration/list_test.cc -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/qa/integration/rdb_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/qa/integration/rdb_test.cc -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/qa/integration/set_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/qa/integration/set_test.cc -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/qa/integration/zset_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/qa/integration/zset_test.cc -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/qa/unit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/qa/unit/CMakeLists.txt -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/qa/unit/gcov.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/qa/unit/gcov.sh -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/qa/unit/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/qa/unit/gtest_main.cc -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/qa/unit/include/ssdb_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/qa/unit/include/ssdb_test.h -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/support/redis.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/support/redis.tcl -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/support/server.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/support/server.tcl -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/support/test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/support/test.tcl -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/support/tmpfile.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/support/tmpfile.tcl -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/support/util.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/support/util.tcl -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/test_helper.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/test_helper.tcl -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/unit/bitops.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/unit/bitops.tcl -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/unit/dump.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/unit/dump.tcl -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/unit/expire.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/unit/expire.tcl -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/unit/other.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/unit/other.tcl -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/unit/protocol.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/unit/protocol.tcl -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/unit/quit.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/unit/quit.tcl -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/unit/scan.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/unit/scan.tcl -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/unit/scripting.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/unit/scripting.tcl -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/unit/slowlog.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/unit/slowlog.tcl -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/unit/sort.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/unit/sort.tcl -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/unit/type/hash.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/unit/type/hash.tcl -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/unit/type/incr.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/unit/type/incr.tcl -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/unit/type/list-2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/unit/type/list-2.tcl -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/unit/type/list-3.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/unit/type/list-3.tcl -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/unit/type/list-common.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/unit/type/list-common.tcl -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/unit/type/list.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/unit/type/list.tcl -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/unit/type/set.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/unit/type/set.tcl -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/unit/type/string.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/unit/type/string.tcl -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tests/unit/type/zset.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tests/unit/type/zset.tcl -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tools/Makefile -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tools/leveldb-import.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tools/leveldb-import.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tools/redis-import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tools/redis-import.php -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tools/ssdb-bench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tools/ssdb-bench.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tools/ssdb-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tools/ssdb-cli -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tools/ssdb-cli.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tools/ssdb-cli.bat -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tools/ssdb-cli.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tools/ssdb-cli.cpy -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tools/ssdb-dump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tools/ssdb-dump.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tools/ssdb-migrate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tools/ssdb-migrate.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tools/ssdb-repair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tools/ssdb-repair.cpp -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tools/ssdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tools/ssdb.sh -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tools/ssdb_cli/cluster.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tools/ssdb_cli/cluster.cpy -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tools/ssdb_cli/exporter.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tools/ssdb_cli/exporter.cpy -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tools/ssdb_cli/flushdb.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tools/ssdb_cli/flushdb.cpy -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tools/ssdb_cli/importer.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tools/ssdb_cli/importer.cpy -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tools/ssdb_cli/nagios.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tools/ssdb_cli/nagios.cpy -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tools/ssdb_cli/util.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tools/ssdb_cli/util.cpy -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tools/test_slow_client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tools/test_slow_client.php -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/tools/unittest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/swap-ssdb-1.9.2/tools/unittest.php -------------------------------------------------------------------------------- /swap-ssdb-1.9.2/version: -------------------------------------------------------------------------------- 1 | 1.9.4 2 | -------------------------------------------------------------------------------- /utils/deploy_redis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/utils/deploy_redis.sh -------------------------------------------------------------------------------- /utils/redis.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/utils/redis.conf.template -------------------------------------------------------------------------------- /utils/ssdb.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingchengLi/swapdb/HEAD/utils/ssdb.conf.template --------------------------------------------------------------------------------