├── README.md ├── adlist.c ├── adlist.h ├── ae.c ├── ae.h ├── ae_epoll.c ├── aof.c ├── cluster.c ├── cluster.h ├── db.c ├── dict.c ├── dict.h ├── intset.c ├── intset.h ├── multi.c ├── networking.c ├── notify.c ├── object.c ├── quicklist.c ├── quicklist.h ├── rdb.c ├── rdb.h ├── redis-3.2.8 ├── .gitignore ├── 00-RELEASENOTES ├── BUGS ├── CONTRIBUTING ├── COPYING ├── INSTALL ├── MANIFESTO ├── Makefile ├── README.md ├── deps │ ├── Makefile │ ├── README.md │ ├── geohash-int │ │ ├── Makefile │ │ ├── geohash.c │ │ ├── geohash.h │ │ ├── geohash_helper.c │ │ └── geohash_helper.h │ ├── hiredis │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── COPYING │ │ ├── Makefile │ │ ├── README.md │ │ ├── adapters │ │ │ ├── ae.h │ │ │ ├── libev.h │ │ │ ├── libevent.h │ │ │ └── libuv.h │ │ ├── async.c │ │ ├── async.h │ │ ├── dict.c │ │ ├── dict.h │ │ ├── examples │ │ │ ├── example-ae.c │ │ │ ├── example-libev.c │ │ │ ├── example-libevent.c │ │ │ ├── example-libuv.c │ │ │ └── example.c │ │ ├── fmacros.h │ │ ├── hiredis.c │ │ ├── hiredis.h │ │ ├── net.c │ │ ├── net.h │ │ ├── sds.c │ │ ├── sds.h │ │ ├── sdsalloc.h │ │ ├── test.c │ │ └── zmalloc.h │ ├── jemalloc │ │ ├── .autom4te.cfg │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── INSTALL │ │ ├── Makefile.in │ │ ├── README │ │ ├── autogen.sh │ │ ├── bin │ │ │ ├── jemalloc-config.in │ │ │ ├── jemalloc.sh.in │ │ │ └── jeprof.in │ │ ├── config.guess │ │ ├── config.stamp.in │ │ ├── config.sub │ │ ├── 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 ├── redis.conf ├── runtest ├── runtest-cluster ├── runtest-sentinel ├── sentinel.conf ├── src │ ├── .gitignore │ ├── .tags │ ├── .tags_sorted_by_file │ ├── Makefile │ ├── Makefile.dep │ ├── adlist.c │ ├── adlist.h │ ├── ae.c │ ├── ae.h │ ├── ae_epoll.c │ ├── ae_evport.c │ ├── ae_kqueue.c │ ├── ae_select.c │ ├── anet.c │ ├── anet.h │ ├── aof.c │ ├── asciilogo.h │ ├── bio.c │ ├── bio.h │ ├── bitops.c │ ├── blocked.c │ ├── cluster.c │ ├── cluster.h │ ├── config.c │ ├── config.h │ ├── crc16.c │ ├── crc64.c │ ├── crc64.h │ ├── db.c │ ├── debug.c │ ├── debugmacro.h │ ├── dict.c │ ├── dict.h │ ├── endianconv.c │ ├── endianconv.h │ ├── fmacros.h │ ├── geo.c │ ├── geo.h │ ├── help.h │ ├── hyperloglog.c │ ├── intset.c │ ├── intset.h │ ├── latency.c │ ├── latency.h │ ├── lzf.h │ ├── lzfP.h │ ├── lzf_c.c │ ├── lzf_d.c │ ├── memtest.c │ ├── mkreleasehdr.sh │ ├── multi.c │ ├── networking.c │ ├── notify.c │ ├── object.c │ ├── pqsort.c │ ├── pqsort.h │ ├── pubsub.c │ ├── quicklist.c │ ├── quicklist.h │ ├── rand.c │ ├── rand.h │ ├── rdb.c │ ├── rdb.h │ ├── redis-benchmark.c │ ├── redis-check-aof.c │ ├── redis-check-rdb.c │ ├── redis-cli.c │ ├── redis-trib.rb │ ├── redisassert.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 │ ├── 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 │ ├── tags │ ├── testhelp.h │ ├── util.c │ ├── util.h │ ├── valgrind.sup │ ├── version.h │ ├── ziplist.c │ ├── ziplist.h │ ├── zipmap.c │ ├── zipmap.h │ ├── zmalloc.c │ └── zmalloc.h ├── tests │ ├── assets │ │ ├── default.conf │ │ ├── encodings.rdb │ │ └── hash-zipmap.rdb │ ├── cluster │ │ ├── cluster.tcl │ │ ├── run.tcl │ │ ├── tests │ │ │ ├── 00-base.tcl │ │ │ ├── 01-faildet.tcl │ │ │ ├── 02-failover.tcl │ │ │ ├── 03-failover-loop.tcl │ │ │ ├── 04-resharding.tcl │ │ │ ├── 05-slave-selection.tcl │ │ │ ├── 06-slave-stop-cond.tcl │ │ │ ├── 07-replica-migration.tcl │ │ │ ├── 08-update-msg.tcl │ │ │ ├── 09-pubsub.tcl │ │ │ ├── 10-manual-failover.tcl │ │ │ ├── 11-manual-takeover.tcl │ │ │ ├── 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 │ │ ├── rdb.tcl │ │ ├── redis-cli.tcl │ │ ├── replication-2.tcl │ │ ├── replication-3.tcl │ │ ├── replication-4.tcl │ │ ├── replication-psync.tcl │ │ └── replication.tcl │ ├── sentinel │ │ ├── run.tcl │ │ ├── tests │ │ │ ├── 00-base.tcl │ │ │ ├── 01-conf-update.tcl │ │ │ ├── 02-slaves-reconf.tcl │ │ │ ├── 03-runtime-reconf.tcl │ │ │ ├── 04-slave-selection.tcl │ │ │ ├── 05-manual.tcl │ │ │ ├── 06-ckquorum.tcl │ │ │ ├── 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 │ │ ├── limits.tcl │ │ ├── maxmemory.tcl │ │ ├── memefficiency.tcl │ │ ├── multi.tcl │ │ ├── obuf-limits.tcl │ │ ├── other.tcl │ │ ├── printver.tcl │ │ ├── protocol.tcl │ │ ├── pubsub.tcl │ │ ├── quit.tcl │ │ ├── scan.tcl │ │ ├── scripting.tcl │ │ ├── slowlog.tcl │ │ ├── sort.tcl │ │ └── type │ │ ├── hash.tcl │ │ ├── incr.tcl │ │ ├── list-2.tcl │ │ ├── list-3.tcl │ │ ├── list-common.tcl │ │ ├── list.tcl │ │ ├── set.tcl │ │ ├── string.tcl │ │ └── zset.tcl └── utils │ ├── build-static-symbols.tcl │ ├── cluster_fail_time.tcl │ ├── corrupt_rdb.c │ ├── create-cluster │ ├── .gitignore │ ├── README │ └── create-cluster │ ├── generate-command-help.rb │ ├── hashtable │ ├── README │ └── rehashing.c │ ├── hyperloglog │ ├── .gitignore │ ├── hll-err.rb │ └── hll-gnuplot-graph.rb │ ├── install_server.sh │ ├── lru │ ├── README │ └── test-lru.rb │ ├── redis-copy.rb │ ├── redis-sha1.rb │ ├── redis_init_script │ ├── redis_init_script.tpl │ ├── releasetools │ ├── 01_create_tarball.sh │ ├── 02_upload_tarball.sh │ ├── 03_test_release.sh │ └── 04_release_hash.sh │ ├── speed-regression.tcl │ └── whatisdoing.sh ├── redis.h ├── replication.c ├── rio.c ├── rio.h ├── sds.c ├── sds.h ├── sentinel.c ├── server.c ├── server.h ├── t_hash.c ├── t_list.c ├── t_set.c ├── t_string.c ├── t_zset.c ├── ziplist.c └── ziplist.h /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/README.md -------------------------------------------------------------------------------- /adlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/adlist.c -------------------------------------------------------------------------------- /adlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/adlist.h -------------------------------------------------------------------------------- /ae.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/ae.c -------------------------------------------------------------------------------- /ae.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/ae.h -------------------------------------------------------------------------------- /ae_epoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/ae_epoll.c -------------------------------------------------------------------------------- /aof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/aof.c -------------------------------------------------------------------------------- /cluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/cluster.c -------------------------------------------------------------------------------- /cluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/cluster.h -------------------------------------------------------------------------------- /db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/db.c -------------------------------------------------------------------------------- /dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/dict.c -------------------------------------------------------------------------------- /dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/dict.h -------------------------------------------------------------------------------- /intset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/intset.c -------------------------------------------------------------------------------- /intset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/intset.h -------------------------------------------------------------------------------- /multi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/multi.c -------------------------------------------------------------------------------- /networking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/networking.c -------------------------------------------------------------------------------- /notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/notify.c -------------------------------------------------------------------------------- /object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/object.c -------------------------------------------------------------------------------- /quicklist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/quicklist.c -------------------------------------------------------------------------------- /quicklist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/quicklist.h -------------------------------------------------------------------------------- /rdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/rdb.c -------------------------------------------------------------------------------- /rdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/rdb.h -------------------------------------------------------------------------------- /redis-3.2.8/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/.gitignore -------------------------------------------------------------------------------- /redis-3.2.8/00-RELEASENOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/00-RELEASENOTES -------------------------------------------------------------------------------- /redis-3.2.8/BUGS: -------------------------------------------------------------------------------- 1 | Please check https://github.com/antirez/redis/issues 2 | -------------------------------------------------------------------------------- /redis-3.2.8/CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/CONTRIBUTING -------------------------------------------------------------------------------- /redis-3.2.8/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/COPYING -------------------------------------------------------------------------------- /redis-3.2.8/INSTALL: -------------------------------------------------------------------------------- 1 | See README 2 | -------------------------------------------------------------------------------- /redis-3.2.8/MANIFESTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/MANIFESTO -------------------------------------------------------------------------------- /redis-3.2.8/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/Makefile -------------------------------------------------------------------------------- /redis-3.2.8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/README.md -------------------------------------------------------------------------------- /redis-3.2.8/deps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/Makefile -------------------------------------------------------------------------------- /redis-3.2.8/deps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/README.md -------------------------------------------------------------------------------- /redis-3.2.8/deps/geohash-int/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/geohash-int/Makefile -------------------------------------------------------------------------------- /redis-3.2.8/deps/geohash-int/geohash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/geohash-int/geohash.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/geohash-int/geohash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/geohash-int/geohash.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/geohash-int/geohash_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/geohash-int/geohash_helper.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/geohash-int/geohash_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/geohash-int/geohash_helper.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/hiredis/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/hiredis/.gitignore -------------------------------------------------------------------------------- /redis-3.2.8/deps/hiredis/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/hiredis/.travis.yml -------------------------------------------------------------------------------- /redis-3.2.8/deps/hiredis/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/hiredis/CHANGELOG.md -------------------------------------------------------------------------------- /redis-3.2.8/deps/hiredis/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/hiredis/COPYING -------------------------------------------------------------------------------- /redis-3.2.8/deps/hiredis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/hiredis/Makefile -------------------------------------------------------------------------------- /redis-3.2.8/deps/hiredis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/hiredis/README.md -------------------------------------------------------------------------------- /redis-3.2.8/deps/hiredis/adapters/ae.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/hiredis/adapters/ae.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/hiredis/adapters/libev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/hiredis/adapters/libev.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/hiredis/adapters/libevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/hiredis/adapters/libevent.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/hiredis/adapters/libuv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/hiredis/adapters/libuv.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/hiredis/async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/hiredis/async.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/hiredis/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/hiredis/async.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/hiredis/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/hiredis/dict.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/hiredis/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/hiredis/dict.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/hiredis/examples/example-ae.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/hiredis/examples/example-ae.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/hiredis/examples/example-libev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/hiredis/examples/example-libev.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/hiredis/examples/example-libevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/hiredis/examples/example-libevent.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/hiredis/examples/example-libuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/hiredis/examples/example-libuv.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/hiredis/examples/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/hiredis/examples/example.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/hiredis/fmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/hiredis/fmacros.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/hiredis/hiredis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/hiredis/hiredis.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/hiredis/hiredis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/hiredis/hiredis.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/hiredis/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/hiredis/net.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/hiredis/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/hiredis/net.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/hiredis/sds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/hiredis/sds.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/hiredis/sds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/hiredis/sds.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/hiredis/sdsalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/hiredis/sdsalloc.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/hiredis/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/hiredis/test.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/hiredis/zmalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/hiredis/zmalloc.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/.autom4te.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/.autom4te.cfg -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/.gitignore -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/COPYING -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/ChangeLog -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/INSTALL -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/Makefile.in -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/README -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/autogen.sh -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/bin/jemalloc-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/bin/jemalloc-config.in -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/bin/jemalloc.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/bin/jemalloc.sh.in -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/bin/jeprof.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/bin/jeprof.in -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/config.guess -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/config.stamp.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/config.sub -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/configure.ac -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/coverage.sh -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/doc/html.xsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/doc/html.xsl.in -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/doc/jemalloc.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/doc/jemalloc.xml.in -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/doc/manpages.xsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/doc/manpages.xsl.in -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/doc/stylesheet.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/doc/stylesheet.xsl -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/jemalloc/internal/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/jemalloc/internal/arena.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/jemalloc/internal/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/jemalloc/internal/atomic.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/jemalloc/internal/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/jemalloc/internal/base.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/jemalloc/internal/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/jemalloc/internal/bitmap.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/jemalloc/internal/chunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/jemalloc/internal/chunk.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/jemalloc/internal/chunk_dss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/jemalloc/internal/chunk_dss.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/jemalloc/internal/chunk_mmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/jemalloc/internal/chunk_mmap.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/jemalloc/internal/ckh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/jemalloc/internal/ckh.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/jemalloc/internal/ctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/jemalloc/internal/ctl.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/jemalloc/internal/extent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/jemalloc/internal/extent.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/jemalloc/internal/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/jemalloc/internal/hash.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/jemalloc/internal/huge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/jemalloc/internal/huge.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/jemalloc/internal/jemalloc_internal.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/jemalloc/internal/jemalloc_internal.h.in -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/jemalloc/internal/jemalloc_internal_decls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/jemalloc/internal/jemalloc_internal_decls.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/jemalloc/internal/jemalloc_internal_defs.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/jemalloc/internal/jemalloc_internal_defs.h.in -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/jemalloc/internal/jemalloc_internal_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/jemalloc/internal/jemalloc_internal_macros.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/jemalloc/internal/mb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/jemalloc/internal/mb.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/jemalloc/internal/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/jemalloc/internal/mutex.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/jemalloc/internal/pages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/jemalloc/internal/pages.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/jemalloc/internal/private_namespace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/jemalloc/internal/private_namespace.sh -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/jemalloc/internal/private_symbols.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/jemalloc/internal/private_symbols.txt -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/jemalloc/internal/private_unnamespace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/jemalloc/internal/private_unnamespace.sh -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/jemalloc/internal/prng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/jemalloc/internal/prng.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/jemalloc/internal/prof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/jemalloc/internal/prof.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/jemalloc/internal/public_namespace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/jemalloc/internal/public_namespace.sh -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/jemalloc/internal/public_unnamespace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/jemalloc/internal/public_unnamespace.sh -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/jemalloc/internal/ql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/jemalloc/internal/ql.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/jemalloc/internal/qr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/jemalloc/internal/qr.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/jemalloc/internal/quarantine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/jemalloc/internal/quarantine.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/jemalloc/internal/rb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/jemalloc/internal/rb.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/jemalloc/internal/rtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/jemalloc/internal/rtree.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/jemalloc/internal/size_classes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/jemalloc/internal/size_classes.sh -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/jemalloc/internal/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/jemalloc/internal/stats.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/jemalloc/internal/tcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/jemalloc/internal/tcache.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/jemalloc/internal/tsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/jemalloc/internal/tsd.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/jemalloc/internal/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/jemalloc/internal/util.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/jemalloc/internal/valgrind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/jemalloc/internal/valgrind.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/jemalloc/jemalloc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/jemalloc/jemalloc.sh -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/jemalloc/jemalloc_defs.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/jemalloc/jemalloc_defs.h.in -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/jemalloc/jemalloc_macros.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/jemalloc/jemalloc_macros.h.in -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/jemalloc/jemalloc_mangle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/jemalloc/jemalloc_mangle.sh -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/jemalloc/jemalloc_protos.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/jemalloc/jemalloc_protos.h.in -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/jemalloc/jemalloc_rename.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/jemalloc/jemalloc_rename.sh -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/jemalloc/jemalloc_typedefs.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/jemalloc/jemalloc_typedefs.h.in -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/msvc_compat/C99/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/msvc_compat/C99/stdbool.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/msvc_compat/C99/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/msvc_compat/C99/stdint.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/msvc_compat/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/msvc_compat/strings.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/include/msvc_compat/windows_extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/include/msvc_compat/windows_extra.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/install-sh -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/jemalloc.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/jemalloc.pc.in -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/src/arena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/src/arena.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/src/atomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/src/atomic.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/src/base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/src/base.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/src/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/src/bitmap.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/src/chunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/src/chunk.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/src/chunk_dss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/src/chunk_dss.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/src/chunk_mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/src/chunk_mmap.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/src/ckh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/src/ckh.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/src/ctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/src/ctl.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/src/extent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/src/extent.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/src/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/src/hash.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/src/huge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/src/huge.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/src/jemalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/src/jemalloc.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/src/mb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/src/mb.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/src/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/src/mutex.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/src/pages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/src/pages.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/src/prof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/src/prof.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/src/quarantine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/src/quarantine.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/src/rtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/src/rtree.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/src/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/src/stats.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/src/tcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/src/tcache.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/src/tsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/src/tsd.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/src/util.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/src/valgrind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/src/valgrind.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/src/zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/src/zone.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/include/test/SFMT-alti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/include/test/SFMT-alti.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/include/test/SFMT-params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/include/test/SFMT-params.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/include/test/SFMT-params11213.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/include/test/SFMT-params11213.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/include/test/SFMT-params1279.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/include/test/SFMT-params1279.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/include/test/SFMT-params132049.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/include/test/SFMT-params132049.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/include/test/SFMT-params19937.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/include/test/SFMT-params19937.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/include/test/SFMT-params216091.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/include/test/SFMT-params216091.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/include/test/SFMT-params2281.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/include/test/SFMT-params2281.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/include/test/SFMT-params4253.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/include/test/SFMT-params4253.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/include/test/SFMT-params44497.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/include/test/SFMT-params44497.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/include/test/SFMT-params607.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/include/test/SFMT-params607.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/include/test/SFMT-params86243.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/include/test/SFMT-params86243.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/include/test/SFMT-sse2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/include/test/SFMT-sse2.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/include/test/SFMT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/include/test/SFMT.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/include/test/btalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/include/test/btalloc.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/include/test/jemalloc_test.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/include/test/jemalloc_test.h.in -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/include/test/jemalloc_test_defs.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/include/test/jemalloc_test_defs.h.in -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/include/test/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/include/test/math.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/include/test/mq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/include/test/mq.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/include/test/mtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/include/test/mtx.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/include/test/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/include/test/test.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/include/test/thd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/include/test/thd.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/include/test/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/include/test/timer.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/integration/MALLOCX_ARENA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/integration/MALLOCX_ARENA.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/integration/aligned_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/integration/aligned_alloc.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/integration/allocated.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/integration/allocated.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/integration/chunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/integration/chunk.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/integration/mallocx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/integration/mallocx.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/integration/overflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/integration/overflow.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/integration/posix_memalign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/integration/posix_memalign.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/integration/rallocx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/integration/rallocx.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/integration/sdallocx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/integration/sdallocx.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/integration/thread_arena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/integration/thread_arena.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/integration/thread_tcache_enabled.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/integration/thread_tcache_enabled.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/integration/xallocx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/integration/xallocx.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/src/SFMT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/src/SFMT.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/src/btalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/src/btalloc.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/src/btalloc_0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/src/btalloc_0.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/src/btalloc_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/src/btalloc_1.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/src/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/src/math.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/src/mq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/src/mq.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/src/mtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/src/mtx.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/src/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/src/test.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/src/thd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/src/thd.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/src/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/src/timer.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/stress/microbench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/stress/microbench.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/test.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/test.sh.in -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/unit/SFMT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/unit/SFMT.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/unit/atomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/unit/atomic.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/unit/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/unit/bitmap.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/unit/ckh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/unit/ckh.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/unit/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/unit/hash.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/unit/junk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/unit/junk.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/unit/junk_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/unit/junk_alloc.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/unit/junk_free.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/unit/junk_free.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/unit/lg_chunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/unit/lg_chunk.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/unit/mallctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/unit/mallctl.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/unit/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/unit/math.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/unit/mq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/unit/mq.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/unit/mtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/unit/mtx.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/unit/prof_accum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/unit/prof_accum.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/unit/prof_active.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/unit/prof_active.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/unit/prof_gdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/unit/prof_gdump.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/unit/prof_idump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/unit/prof_idump.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/unit/prof_reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/unit/prof_reset.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/unit/prof_thread_name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/unit/prof_thread_name.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/unit/ql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/unit/ql.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/unit/qr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/unit/qr.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/unit/quarantine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/unit/quarantine.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/unit/rb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/unit/rb.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/unit/rtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/unit/rtree.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/unit/size_classes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/unit/size_classes.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/unit/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/unit/stats.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/unit/tsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/unit/tsd.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/unit/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/unit/util.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/jemalloc/test/unit/zero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/jemalloc/test/unit/zero.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/linenoise/.gitignore: -------------------------------------------------------------------------------- 1 | linenoise_example 2 | *.dSYM 3 | history.txt 4 | -------------------------------------------------------------------------------- /redis-3.2.8/deps/linenoise/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/linenoise/Makefile -------------------------------------------------------------------------------- /redis-3.2.8/deps/linenoise/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/linenoise/README.markdown -------------------------------------------------------------------------------- /redis-3.2.8/deps/linenoise/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/linenoise/example.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/linenoise/linenoise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/linenoise/linenoise.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/linenoise/linenoise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/linenoise/linenoise.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/COPYRIGHT -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/HISTORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/HISTORY -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/INSTALL -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/Makefile -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/README -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/doc/contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/doc/contents.html -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/doc/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/doc/cover.png -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/doc/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/doc/logo.gif -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/doc/lua.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/doc/lua.1 -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/doc/lua.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/doc/lua.css -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/doc/lua.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/doc/lua.html -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/doc/luac.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/doc/luac.1 -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/doc/luac.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/doc/luac.html -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/doc/manual.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/doc/manual.css -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/doc/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/doc/manual.html -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/doc/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/doc/readme.html -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/etc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/etc/Makefile -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/etc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/etc/README -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/etc/all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/etc/all.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/etc/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/etc/lua.hpp -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/etc/lua.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/etc/lua.ico -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/etc/lua.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/etc/lua.pc -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/etc/luavs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/etc/luavs.bat -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/etc/min.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/etc/min.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/etc/noparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/etc/noparser.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/etc/strict.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/etc/strict.lua -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/Makefile -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/fpconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/fpconv.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/fpconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/fpconv.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/lapi.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/lapi.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/lauxlib.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/lauxlib.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/lbaselib.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/lcode.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/lcode.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/ldblib.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/ldebug.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/ldebug.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/ldo.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/ldo.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/ldump.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/lfunc.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/lfunc.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/lgc.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/lgc.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/linit.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/liolib.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/llex.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/llex.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/llimits.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/lmathlib.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/lmem.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/lmem.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/loadlib.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/lobject.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/lobject.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/lopcodes.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/lopcodes.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/loslib.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/lparser.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/lparser.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/lstate.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/lstate.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/lstring.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/lstring.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/lstrlib.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/ltable.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/ltable.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/ltablib.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/ltm.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/ltm.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/lua.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/lua.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/lua_bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/lua_bit.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/lua_cjson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/lua_cjson.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/lua_cmsgpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/lua_cmsgpack.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/lua_struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/lua_struct.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/luac.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/luaconf.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/lualib.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/lundump.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/lundump.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/lvm.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/lvm.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/lzio.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/lzio.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/print.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/strbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/strbuf.c -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/src/strbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/src/strbuf.h -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/test/README -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/test/bisect.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/test/bisect.lua -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/test/cf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/test/cf.lua -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/test/echo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/test/echo.lua -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/test/env.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/test/env.lua -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/test/factorial.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/test/factorial.lua -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/test/fib.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/test/fib.lua -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/test/fibfor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/test/fibfor.lua -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/test/globals.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/test/globals.lua -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/test/hello.lua: -------------------------------------------------------------------------------- 1 | -- the first program in every language 2 | 3 | io.write("Hello world, from ",_VERSION,"!\n") 4 | -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/test/life.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/test/life.lua -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/test/luac.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/test/luac.lua -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/test/printf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/test/printf.lua -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/test/readonly.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/test/readonly.lua -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/test/sieve.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/test/sieve.lua -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/test/sort.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/test/sort.lua -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/test/table.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/test/table.lua -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/test/trace-calls.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/test/trace-calls.lua -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/test/trace-globals.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/test/trace-globals.lua -------------------------------------------------------------------------------- /redis-3.2.8/deps/lua/test/xd.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/lua/test/xd.lua -------------------------------------------------------------------------------- /redis-3.2.8/deps/update-jemalloc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/deps/update-jemalloc.sh -------------------------------------------------------------------------------- /redis-3.2.8/redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/redis.conf -------------------------------------------------------------------------------- /redis-3.2.8/runtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/runtest -------------------------------------------------------------------------------- /redis-3.2.8/runtest-cluster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/runtest-cluster -------------------------------------------------------------------------------- /redis-3.2.8/runtest-sentinel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/runtest-sentinel -------------------------------------------------------------------------------- /redis-3.2.8/sentinel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/sentinel.conf -------------------------------------------------------------------------------- /redis-3.2.8/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/.gitignore -------------------------------------------------------------------------------- /redis-3.2.8/src/.tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/.tags -------------------------------------------------------------------------------- /redis-3.2.8/src/.tags_sorted_by_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/.tags_sorted_by_file -------------------------------------------------------------------------------- /redis-3.2.8/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/Makefile -------------------------------------------------------------------------------- /redis-3.2.8/src/Makefile.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/Makefile.dep -------------------------------------------------------------------------------- /redis-3.2.8/src/adlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/adlist.c -------------------------------------------------------------------------------- /redis-3.2.8/src/adlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/adlist.h -------------------------------------------------------------------------------- /redis-3.2.8/src/ae.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/ae.c -------------------------------------------------------------------------------- /redis-3.2.8/src/ae.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/ae.h -------------------------------------------------------------------------------- /redis-3.2.8/src/ae_epoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/ae_epoll.c -------------------------------------------------------------------------------- /redis-3.2.8/src/ae_evport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/ae_evport.c -------------------------------------------------------------------------------- /redis-3.2.8/src/ae_kqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/ae_kqueue.c -------------------------------------------------------------------------------- /redis-3.2.8/src/ae_select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/ae_select.c -------------------------------------------------------------------------------- /redis-3.2.8/src/anet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/anet.c -------------------------------------------------------------------------------- /redis-3.2.8/src/anet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/anet.h -------------------------------------------------------------------------------- /redis-3.2.8/src/aof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/aof.c -------------------------------------------------------------------------------- /redis-3.2.8/src/asciilogo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/asciilogo.h -------------------------------------------------------------------------------- /redis-3.2.8/src/bio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/bio.c -------------------------------------------------------------------------------- /redis-3.2.8/src/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/bio.h -------------------------------------------------------------------------------- /redis-3.2.8/src/bitops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/bitops.c -------------------------------------------------------------------------------- /redis-3.2.8/src/blocked.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/blocked.c -------------------------------------------------------------------------------- /redis-3.2.8/src/cluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/cluster.c -------------------------------------------------------------------------------- /redis-3.2.8/src/cluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/cluster.h -------------------------------------------------------------------------------- /redis-3.2.8/src/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/config.c -------------------------------------------------------------------------------- /redis-3.2.8/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/config.h -------------------------------------------------------------------------------- /redis-3.2.8/src/crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/crc16.c -------------------------------------------------------------------------------- /redis-3.2.8/src/crc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/crc64.c -------------------------------------------------------------------------------- /redis-3.2.8/src/crc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/crc64.h -------------------------------------------------------------------------------- /redis-3.2.8/src/db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/db.c -------------------------------------------------------------------------------- /redis-3.2.8/src/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/debug.c -------------------------------------------------------------------------------- /redis-3.2.8/src/debugmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/debugmacro.h -------------------------------------------------------------------------------- /redis-3.2.8/src/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/dict.c -------------------------------------------------------------------------------- /redis-3.2.8/src/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/dict.h -------------------------------------------------------------------------------- /redis-3.2.8/src/endianconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/endianconv.c -------------------------------------------------------------------------------- /redis-3.2.8/src/endianconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/endianconv.h -------------------------------------------------------------------------------- /redis-3.2.8/src/fmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/fmacros.h -------------------------------------------------------------------------------- /redis-3.2.8/src/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/geo.c -------------------------------------------------------------------------------- /redis-3.2.8/src/geo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/geo.h -------------------------------------------------------------------------------- /redis-3.2.8/src/help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/help.h -------------------------------------------------------------------------------- /redis-3.2.8/src/hyperloglog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/hyperloglog.c -------------------------------------------------------------------------------- /redis-3.2.8/src/intset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/intset.c -------------------------------------------------------------------------------- /redis-3.2.8/src/intset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/intset.h -------------------------------------------------------------------------------- /redis-3.2.8/src/latency.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/latency.c -------------------------------------------------------------------------------- /redis-3.2.8/src/latency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/latency.h -------------------------------------------------------------------------------- /redis-3.2.8/src/lzf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/lzf.h -------------------------------------------------------------------------------- /redis-3.2.8/src/lzfP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/lzfP.h -------------------------------------------------------------------------------- /redis-3.2.8/src/lzf_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/lzf_c.c -------------------------------------------------------------------------------- /redis-3.2.8/src/lzf_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/lzf_d.c -------------------------------------------------------------------------------- /redis-3.2.8/src/memtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/memtest.c -------------------------------------------------------------------------------- /redis-3.2.8/src/mkreleasehdr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/mkreleasehdr.sh -------------------------------------------------------------------------------- /redis-3.2.8/src/multi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/multi.c -------------------------------------------------------------------------------- /redis-3.2.8/src/networking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/networking.c -------------------------------------------------------------------------------- /redis-3.2.8/src/notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/notify.c -------------------------------------------------------------------------------- /redis-3.2.8/src/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/object.c -------------------------------------------------------------------------------- /redis-3.2.8/src/pqsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/pqsort.c -------------------------------------------------------------------------------- /redis-3.2.8/src/pqsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/pqsort.h -------------------------------------------------------------------------------- /redis-3.2.8/src/pubsub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/pubsub.c -------------------------------------------------------------------------------- /redis-3.2.8/src/quicklist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/quicklist.c -------------------------------------------------------------------------------- /redis-3.2.8/src/quicklist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/quicklist.h -------------------------------------------------------------------------------- /redis-3.2.8/src/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/rand.c -------------------------------------------------------------------------------- /redis-3.2.8/src/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/rand.h -------------------------------------------------------------------------------- /redis-3.2.8/src/rdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/rdb.c -------------------------------------------------------------------------------- /redis-3.2.8/src/rdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/rdb.h -------------------------------------------------------------------------------- /redis-3.2.8/src/redis-benchmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/redis-benchmark.c -------------------------------------------------------------------------------- /redis-3.2.8/src/redis-check-aof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/redis-check-aof.c -------------------------------------------------------------------------------- /redis-3.2.8/src/redis-check-rdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/redis-check-rdb.c -------------------------------------------------------------------------------- /redis-3.2.8/src/redis-cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/redis-cli.c -------------------------------------------------------------------------------- /redis-3.2.8/src/redis-trib.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/redis-trib.rb -------------------------------------------------------------------------------- /redis-3.2.8/src/redisassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/redisassert.h -------------------------------------------------------------------------------- /redis-3.2.8/src/release.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/release.c -------------------------------------------------------------------------------- /redis-3.2.8/src/replication.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/replication.c -------------------------------------------------------------------------------- /redis-3.2.8/src/rio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/rio.c -------------------------------------------------------------------------------- /redis-3.2.8/src/rio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/rio.h -------------------------------------------------------------------------------- /redis-3.2.8/src/scripting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/scripting.c -------------------------------------------------------------------------------- /redis-3.2.8/src/sds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/sds.c -------------------------------------------------------------------------------- /redis-3.2.8/src/sds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/sds.h -------------------------------------------------------------------------------- /redis-3.2.8/src/sdsalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/sdsalloc.h -------------------------------------------------------------------------------- /redis-3.2.8/src/sentinel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/sentinel.c -------------------------------------------------------------------------------- /redis-3.2.8/src/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/server.c -------------------------------------------------------------------------------- /redis-3.2.8/src/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/server.h -------------------------------------------------------------------------------- /redis-3.2.8/src/setproctitle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/setproctitle.c -------------------------------------------------------------------------------- /redis-3.2.8/src/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/sha1.c -------------------------------------------------------------------------------- /redis-3.2.8/src/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/sha1.h -------------------------------------------------------------------------------- /redis-3.2.8/src/slowlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/slowlog.c -------------------------------------------------------------------------------- /redis-3.2.8/src/slowlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/slowlog.h -------------------------------------------------------------------------------- /redis-3.2.8/src/solarisfixes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/solarisfixes.h -------------------------------------------------------------------------------- /redis-3.2.8/src/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/sort.c -------------------------------------------------------------------------------- /redis-3.2.8/src/sparkline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/sparkline.c -------------------------------------------------------------------------------- /redis-3.2.8/src/sparkline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/sparkline.h -------------------------------------------------------------------------------- /redis-3.2.8/src/syncio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/syncio.c -------------------------------------------------------------------------------- /redis-3.2.8/src/t_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/t_hash.c -------------------------------------------------------------------------------- /redis-3.2.8/src/t_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/t_list.c -------------------------------------------------------------------------------- /redis-3.2.8/src/t_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/t_set.c -------------------------------------------------------------------------------- /redis-3.2.8/src/t_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/t_string.c -------------------------------------------------------------------------------- /redis-3.2.8/src/t_zset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/t_zset.c -------------------------------------------------------------------------------- /redis-3.2.8/src/tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/tags -------------------------------------------------------------------------------- /redis-3.2.8/src/testhelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/testhelp.h -------------------------------------------------------------------------------- /redis-3.2.8/src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/util.c -------------------------------------------------------------------------------- /redis-3.2.8/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/util.h -------------------------------------------------------------------------------- /redis-3.2.8/src/valgrind.sup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/valgrind.sup -------------------------------------------------------------------------------- /redis-3.2.8/src/version.h: -------------------------------------------------------------------------------- 1 | #define REDIS_VERSION "3.2.8" 2 | -------------------------------------------------------------------------------- /redis-3.2.8/src/ziplist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/ziplist.c -------------------------------------------------------------------------------- /redis-3.2.8/src/ziplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/ziplist.h -------------------------------------------------------------------------------- /redis-3.2.8/src/zipmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/zipmap.c -------------------------------------------------------------------------------- /redis-3.2.8/src/zipmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/zipmap.h -------------------------------------------------------------------------------- /redis-3.2.8/src/zmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/zmalloc.c -------------------------------------------------------------------------------- /redis-3.2.8/src/zmalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/src/zmalloc.h -------------------------------------------------------------------------------- /redis-3.2.8/tests/assets/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/assets/default.conf -------------------------------------------------------------------------------- /redis-3.2.8/tests/assets/encodings.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/assets/encodings.rdb -------------------------------------------------------------------------------- /redis-3.2.8/tests/assets/hash-zipmap.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/assets/hash-zipmap.rdb -------------------------------------------------------------------------------- /redis-3.2.8/tests/cluster/cluster.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/cluster/cluster.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/cluster/run.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/cluster/run.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/cluster/tests/00-base.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/cluster/tests/00-base.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/cluster/tests/01-faildet.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/cluster/tests/01-faildet.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/cluster/tests/02-failover.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/cluster/tests/02-failover.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/cluster/tests/03-failover-loop.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/cluster/tests/03-failover-loop.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/cluster/tests/04-resharding.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/cluster/tests/04-resharding.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/cluster/tests/05-slave-selection.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/cluster/tests/05-slave-selection.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/cluster/tests/06-slave-stop-cond.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/cluster/tests/06-slave-stop-cond.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/cluster/tests/07-replica-migration.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/cluster/tests/07-replica-migration.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/cluster/tests/08-update-msg.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/cluster/tests/08-update-msg.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/cluster/tests/09-pubsub.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/cluster/tests/09-pubsub.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/cluster/tests/10-manual-failover.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/cluster/tests/10-manual-failover.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/cluster/tests/11-manual-takeover.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/cluster/tests/11-manual-takeover.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/cluster/tests/12-replica-migration-2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/cluster/tests/12-replica-migration-2.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/cluster/tests/helpers/onlydots.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/cluster/tests/helpers/onlydots.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/cluster/tests/includes/init-tests.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/cluster/tests/includes/init-tests.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/cluster/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | redis_* 2 | sentinel_* 3 | -------------------------------------------------------------------------------- /redis-3.2.8/tests/helpers/bg_complex_data.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/helpers/bg_complex_data.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/helpers/gen_write_load.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/helpers/gen_write_load.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/instances.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/instances.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/integration/aof-race.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/integration/aof-race.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/integration/aof.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/integration/aof.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/integration/convert-zipmap-hash-on-load.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/integration/convert-zipmap-hash-on-load.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/integration/logging.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/integration/logging.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/integration/rdb.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/integration/rdb.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/integration/redis-cli.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/integration/redis-cli.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/integration/replication-2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/integration/replication-2.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/integration/replication-3.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/integration/replication-3.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/integration/replication-4.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/integration/replication-4.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/integration/replication-psync.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/integration/replication-psync.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/integration/replication.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/integration/replication.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/sentinel/run.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/sentinel/run.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/sentinel/tests/00-base.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/sentinel/tests/00-base.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/sentinel/tests/01-conf-update.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/sentinel/tests/01-conf-update.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/sentinel/tests/02-slaves-reconf.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/sentinel/tests/02-slaves-reconf.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/sentinel/tests/03-runtime-reconf.tcl: -------------------------------------------------------------------------------- 1 | # Test runtime reconfiguration command SENTINEL SET. 2 | -------------------------------------------------------------------------------- /redis-3.2.8/tests/sentinel/tests/04-slave-selection.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/sentinel/tests/04-slave-selection.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/sentinel/tests/05-manual.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/sentinel/tests/05-manual.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/sentinel/tests/06-ckquorum.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/sentinel/tests/06-ckquorum.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/sentinel/tests/07-down-conditions.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/sentinel/tests/07-down-conditions.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/sentinel/tests/includes/init-tests.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/sentinel/tests/includes/init-tests.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/sentinel/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | redis_* 2 | sentinel_* 3 | -------------------------------------------------------------------------------- /redis-3.2.8/tests/support/cluster.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/support/cluster.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/support/redis.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/support/redis.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/support/server.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/support/server.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/support/test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/support/test.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/support/tmpfile.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/support/tmpfile.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/support/util.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/support/util.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/test_helper.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/test_helper.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/unit/aofrw.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/unit/aofrw.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/unit/auth.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/unit/auth.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/unit/bitfield.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/unit/bitfield.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/unit/bitops.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/unit/bitops.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/unit/dump.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/unit/dump.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/unit/expire.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/unit/expire.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/unit/geo.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/unit/geo.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/unit/hyperloglog.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/unit/hyperloglog.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/unit/introspection-2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/unit/introspection-2.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/unit/introspection.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/unit/introspection.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/unit/keyspace.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/unit/keyspace.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/unit/latency-monitor.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/unit/latency-monitor.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/unit/limits.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/unit/limits.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/unit/maxmemory.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/unit/maxmemory.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/unit/memefficiency.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/unit/memefficiency.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/unit/multi.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/unit/multi.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/unit/obuf-limits.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/unit/obuf-limits.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/unit/other.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/unit/other.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/unit/printver.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/unit/printver.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/unit/protocol.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/unit/protocol.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/unit/pubsub.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/unit/pubsub.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/unit/quit.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/unit/quit.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/unit/scan.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/unit/scan.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/unit/scripting.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/unit/scripting.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/unit/slowlog.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/unit/slowlog.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/unit/sort.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/unit/sort.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/unit/type/hash.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/unit/type/hash.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/unit/type/incr.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/unit/type/incr.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/unit/type/list-2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/unit/type/list-2.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/unit/type/list-3.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/unit/type/list-3.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/unit/type/list-common.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/unit/type/list-common.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/unit/type/list.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/unit/type/list.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/unit/type/set.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/unit/type/set.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/unit/type/string.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/unit/type/string.tcl -------------------------------------------------------------------------------- /redis-3.2.8/tests/unit/type/zset.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/tests/unit/type/zset.tcl -------------------------------------------------------------------------------- /redis-3.2.8/utils/build-static-symbols.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/utils/build-static-symbols.tcl -------------------------------------------------------------------------------- /redis-3.2.8/utils/cluster_fail_time.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/utils/cluster_fail_time.tcl -------------------------------------------------------------------------------- /redis-3.2.8/utils/corrupt_rdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/utils/corrupt_rdb.c -------------------------------------------------------------------------------- /redis-3.2.8/utils/create-cluster/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/utils/create-cluster/.gitignore -------------------------------------------------------------------------------- /redis-3.2.8/utils/create-cluster/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/utils/create-cluster/README -------------------------------------------------------------------------------- /redis-3.2.8/utils/create-cluster/create-cluster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/utils/create-cluster/create-cluster -------------------------------------------------------------------------------- /redis-3.2.8/utils/generate-command-help.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/utils/generate-command-help.rb -------------------------------------------------------------------------------- /redis-3.2.8/utils/hashtable/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/utils/hashtable/README -------------------------------------------------------------------------------- /redis-3.2.8/utils/hashtable/rehashing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/utils/hashtable/rehashing.c -------------------------------------------------------------------------------- /redis-3.2.8/utils/hyperloglog/.gitignore: -------------------------------------------------------------------------------- 1 | *.txt 2 | -------------------------------------------------------------------------------- /redis-3.2.8/utils/hyperloglog/hll-err.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/utils/hyperloglog/hll-err.rb -------------------------------------------------------------------------------- /redis-3.2.8/utils/hyperloglog/hll-gnuplot-graph.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/utils/hyperloglog/hll-gnuplot-graph.rb -------------------------------------------------------------------------------- /redis-3.2.8/utils/install_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/utils/install_server.sh -------------------------------------------------------------------------------- /redis-3.2.8/utils/lru/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/utils/lru/README -------------------------------------------------------------------------------- /redis-3.2.8/utils/lru/test-lru.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/utils/lru/test-lru.rb -------------------------------------------------------------------------------- /redis-3.2.8/utils/redis-copy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/utils/redis-copy.rb -------------------------------------------------------------------------------- /redis-3.2.8/utils/redis-sha1.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/utils/redis-sha1.rb -------------------------------------------------------------------------------- /redis-3.2.8/utils/redis_init_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/utils/redis_init_script -------------------------------------------------------------------------------- /redis-3.2.8/utils/redis_init_script.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/utils/redis_init_script.tpl -------------------------------------------------------------------------------- /redis-3.2.8/utils/releasetools/01_create_tarball.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/utils/releasetools/01_create_tarball.sh -------------------------------------------------------------------------------- /redis-3.2.8/utils/releasetools/02_upload_tarball.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/utils/releasetools/02_upload_tarball.sh -------------------------------------------------------------------------------- /redis-3.2.8/utils/releasetools/03_test_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/utils/releasetools/03_test_release.sh -------------------------------------------------------------------------------- /redis-3.2.8/utils/releasetools/04_release_hash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/utils/releasetools/04_release_hash.sh -------------------------------------------------------------------------------- /redis-3.2.8/utils/speed-regression.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/utils/speed-regression.tcl -------------------------------------------------------------------------------- /redis-3.2.8/utils/whatisdoing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis-3.2.8/utils/whatisdoing.sh -------------------------------------------------------------------------------- /redis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/redis.h -------------------------------------------------------------------------------- /replication.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/replication.c -------------------------------------------------------------------------------- /rio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/rio.c -------------------------------------------------------------------------------- /rio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/rio.h -------------------------------------------------------------------------------- /sds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/sds.c -------------------------------------------------------------------------------- /sds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/sds.h -------------------------------------------------------------------------------- /sentinel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/sentinel.c -------------------------------------------------------------------------------- /server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/server.c -------------------------------------------------------------------------------- /server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/server.h -------------------------------------------------------------------------------- /t_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/t_hash.c -------------------------------------------------------------------------------- /t_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/t_list.c -------------------------------------------------------------------------------- /t_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/t_set.c -------------------------------------------------------------------------------- /t_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/t_string.c -------------------------------------------------------------------------------- /t_zset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/t_zset.c -------------------------------------------------------------------------------- /ziplist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/ziplist.c -------------------------------------------------------------------------------- /ziplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menwenjun/redis_source_annotation/HEAD/ziplist.h --------------------------------------------------------------------------------