├── .gitignore ├── 00-RELEASENOTES ├── BUGS ├── CONTRIBUTING ├── COPYING ├── INSTALL ├── Makefile ├── README ├── TODO ├── deps ├── hiredis │ ├── .gitignore │ ├── COPYING │ ├── Makefile │ ├── README.md │ ├── TODO │ ├── adapters │ │ ├── ae.h │ │ ├── libev.h │ │ └── libevent.h │ ├── async.c │ ├── async.h │ ├── dict.c │ ├── dict.h │ ├── example-ae.c │ ├── example-libev.c │ ├── example-libevent.c │ ├── example.c │ ├── fmacros.h │ ├── hiredis.c │ ├── hiredis.h │ ├── net.c │ ├── net.h │ ├── sds.c │ ├── sds.h │ ├── test.c │ └── util.h ├── jemalloc │ ├── .gitignore │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── Makefile.in │ ├── README │ ├── VERSION │ ├── autogen.sh │ ├── bin │ │ └── pprof │ ├── config.guess │ ├── config.stamp.in │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── doc │ │ ├── html.xsl.in │ │ ├── jemalloc.3 │ │ ├── jemalloc.html │ │ ├── jemalloc.xml.in │ │ ├── manpages.xsl.in │ │ └── stylesheet.xsl │ ├── include │ │ └── jemalloc │ │ │ ├── internal │ │ │ ├── arena.h │ │ │ ├── atomic.h │ │ │ ├── base.h │ │ │ ├── bitmap.h │ │ │ ├── chunk.h │ │ │ ├── chunk_dss.h │ │ │ ├── chunk_mmap.h │ │ │ ├── chunk_swap.h │ │ │ ├── ckh.h │ │ │ ├── ctl.h │ │ │ ├── extent.h │ │ │ ├── hash.h │ │ │ ├── huge.h │ │ │ ├── jemalloc_internal.h.in │ │ │ ├── mb.h │ │ │ ├── mutex.h │ │ │ ├── private_namespace.h │ │ │ ├── prof.h │ │ │ ├── ql.h │ │ │ ├── qr.h │ │ │ ├── rb.h │ │ │ ├── rtree.h │ │ │ ├── stats.h │ │ │ ├── tcache.h │ │ │ └── zone.h │ │ │ ├── jemalloc.h.in │ │ │ └── jemalloc_defs.h.in │ ├── install-sh │ ├── src │ │ ├── arena.c │ │ ├── atomic.c │ │ ├── base.c │ │ ├── bitmap.c │ │ ├── chunk.c │ │ ├── chunk_dss.c │ │ ├── chunk_mmap.c │ │ ├── chunk_swap.c │ │ ├── ckh.c │ │ ├── ctl.c │ │ ├── extent.c │ │ ├── hash.c │ │ ├── huge.c │ │ ├── jemalloc.c │ │ ├── mb.c │ │ ├── mutex.c │ │ ├── prof.c │ │ ├── rtree.c │ │ ├── stats.c │ │ ├── tcache.c │ │ └── zone.c │ └── test │ │ ├── allocated.c │ │ ├── allocated.exp │ │ ├── allocm.c │ │ ├── allocm.exp │ │ ├── bitmap.c │ │ ├── bitmap.exp │ │ ├── jemalloc_test.h.in │ │ ├── mremap.c │ │ ├── mremap.exp │ │ ├── posix_memalign.c │ │ ├── posix_memalign.exp │ │ ├── rallocm.c │ │ ├── rallocm.exp │ │ ├── thread_arena.c │ │ └── thread_arena.exp └── linenoise │ ├── .gitignore │ ├── Makefile │ ├── README.markdown │ ├── example.c │ ├── linenoise.c │ └── linenoise.h ├── redis.conf ├── runtest ├── setup ├── COPYING.txt ├── Makefile ├── README.txt ├── Redis Documentation.url ├── Redis Home.url ├── Redis Windows Port Home.url ├── Redis Windows Service and Setup Home.url ├── SetACL.exe ├── redis-setup-wizard-small.bmp ├── redis-setup-wizard.bmp ├── redis.ico ├── redis.iss ├── service-account.pas └── service.pas ├── src ├── Makefile ├── adlist.c ├── adlist.h ├── ae.c ├── ae.h ├── ae_epoll.c ├── ae_kqueue.c ├── ae_select.c ├── ae_ws2.c ├── anet.c ├── anet.h ├── aof.c ├── bio.c ├── bio.h ├── config.c ├── config.h ├── db.c ├── debug.c ├── dict.c ├── dict.h ├── endian.c ├── endian.h ├── fmacros.h ├── help.h ├── intset.c ├── intset.h ├── lzf.h ├── lzfP.h ├── lzf_c.c ├── lzf_d.c ├── mkreleasehdr.sh ├── multi.c ├── networking.c ├── object.c ├── pqsort.c ├── pqsort.h ├── pubsub.c ├── rdb.c ├── redis-benchmark.c ├── redis-check-aof.c ├── redis-check-dump.c ├── redis-cli.c ├── redis.c ├── redis.h ├── release.c ├── replication.c ├── sds.c ├── sds.h ├── service-setup-helper.c ├── service.c ├── service.rc ├── sha1.c ├── sha1.h ├── slowlog.c ├── slowlog.h ├── solarisfixes.h ├── sort.c ├── syncio.c ├── t_hash.c ├── t_list.c ├── t_set.c ├── t_string.c ├── t_zset.c ├── testhelp.h ├── util.c ├── util.h ├── valgrind.sup ├── version.h ├── vm.c ├── win32err.h ├── win32fixes.c ├── win32fixes.h ├── ziplist.c ├── ziplist.h ├── zipmap.c ├── zipmap.h ├── zmalloc.c └── zmalloc.h ├── tests ├── assets │ └── default.conf ├── helpers │ └── gen_write_load.tcl ├── integration │ ├── aof-race.tcl │ ├── aof.tcl │ ├── redis-cli.tcl │ ├── replication-2.tcl │ ├── replication-3.tcl │ └── replication.tcl ├── support │ ├── redis.tcl │ ├── server.tcl │ ├── test.tcl │ ├── tmpfile.tcl │ └── util.tcl ├── test_helper.tcl ├── tmp │ └── .gitignore └── unit │ ├── auth.tcl │ ├── basic.tcl │ ├── cas.tcl │ ├── expire.tcl │ ├── introspection.tcl │ ├── maxmemory.tcl │ ├── other.tcl │ ├── printver.tcl │ ├── protocol.tcl │ ├── pubsub.tcl │ ├── quit.tcl │ ├── slowlog.tcl │ ├── sort.tcl │ └── type │ ├── hash.tcl │ ├── list-2.tcl │ ├── list-3.tcl │ ├── list-common.tcl │ ├── list.tcl │ ├── set.tcl │ └── zset.tcl └── utils ├── generate-command-help.rb ├── install_server.sh ├── mkrelease.sh ├── mktarball.sh ├── redis.conf.tpl ├── redis_init_script └── redis_init_script.tpl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/.gitignore -------------------------------------------------------------------------------- /00-RELEASENOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/00-RELEASENOTES -------------------------------------------------------------------------------- /BUGS: -------------------------------------------------------------------------------- 1 | Plese check http://code.google.com/p/redis/issues/list 2 | -------------------------------------------------------------------------------- /CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/CONTRIBUTING -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/COPYING -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- 1 | Please check the README file. 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/TODO -------------------------------------------------------------------------------- /deps/hiredis/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/hiredis/.gitignore -------------------------------------------------------------------------------- /deps/hiredis/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/hiredis/COPYING -------------------------------------------------------------------------------- /deps/hiredis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/hiredis/Makefile -------------------------------------------------------------------------------- /deps/hiredis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/hiredis/README.md -------------------------------------------------------------------------------- /deps/hiredis/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/hiredis/TODO -------------------------------------------------------------------------------- /deps/hiredis/adapters/ae.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/hiredis/adapters/ae.h -------------------------------------------------------------------------------- /deps/hiredis/adapters/libev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/hiredis/adapters/libev.h -------------------------------------------------------------------------------- /deps/hiredis/adapters/libevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/hiredis/adapters/libevent.h -------------------------------------------------------------------------------- /deps/hiredis/async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/hiredis/async.c -------------------------------------------------------------------------------- /deps/hiredis/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/hiredis/async.h -------------------------------------------------------------------------------- /deps/hiredis/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/hiredis/dict.c -------------------------------------------------------------------------------- /deps/hiredis/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/hiredis/dict.h -------------------------------------------------------------------------------- /deps/hiredis/example-ae.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/hiredis/example-ae.c -------------------------------------------------------------------------------- /deps/hiredis/example-libev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/hiredis/example-libev.c -------------------------------------------------------------------------------- /deps/hiredis/example-libevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/hiredis/example-libevent.c -------------------------------------------------------------------------------- /deps/hiredis/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/hiredis/example.c -------------------------------------------------------------------------------- /deps/hiredis/fmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/hiredis/fmacros.h -------------------------------------------------------------------------------- /deps/hiredis/hiredis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/hiredis/hiredis.c -------------------------------------------------------------------------------- /deps/hiredis/hiredis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/hiredis/hiredis.h -------------------------------------------------------------------------------- /deps/hiredis/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/hiredis/net.c -------------------------------------------------------------------------------- /deps/hiredis/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/hiredis/net.h -------------------------------------------------------------------------------- /deps/hiredis/sds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/hiredis/sds.c -------------------------------------------------------------------------------- /deps/hiredis/sds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/hiredis/sds.h -------------------------------------------------------------------------------- /deps/hiredis/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/hiredis/test.c -------------------------------------------------------------------------------- /deps/hiredis/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/hiredis/util.h -------------------------------------------------------------------------------- /deps/jemalloc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/.gitignore -------------------------------------------------------------------------------- /deps/jemalloc/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/COPYING -------------------------------------------------------------------------------- /deps/jemalloc/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/ChangeLog -------------------------------------------------------------------------------- /deps/jemalloc/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/INSTALL -------------------------------------------------------------------------------- /deps/jemalloc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/Makefile.in -------------------------------------------------------------------------------- /deps/jemalloc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/README -------------------------------------------------------------------------------- /deps/jemalloc/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/VERSION -------------------------------------------------------------------------------- /deps/jemalloc/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/autogen.sh -------------------------------------------------------------------------------- /deps/jemalloc/bin/pprof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/bin/pprof -------------------------------------------------------------------------------- /deps/jemalloc/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/config.guess -------------------------------------------------------------------------------- /deps/jemalloc/config.stamp.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/jemalloc/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/config.sub -------------------------------------------------------------------------------- /deps/jemalloc/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/configure -------------------------------------------------------------------------------- /deps/jemalloc/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/configure.ac -------------------------------------------------------------------------------- /deps/jemalloc/doc/html.xsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/doc/html.xsl.in -------------------------------------------------------------------------------- /deps/jemalloc/doc/jemalloc.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/doc/jemalloc.3 -------------------------------------------------------------------------------- /deps/jemalloc/doc/jemalloc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/doc/jemalloc.html -------------------------------------------------------------------------------- /deps/jemalloc/doc/jemalloc.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/doc/jemalloc.xml.in -------------------------------------------------------------------------------- /deps/jemalloc/doc/manpages.xsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/doc/manpages.xsl.in -------------------------------------------------------------------------------- /deps/jemalloc/doc/stylesheet.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/doc/stylesheet.xsl -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/include/jemalloc/internal/arena.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/include/jemalloc/internal/atomic.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/include/jemalloc/internal/base.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/include/jemalloc/internal/bitmap.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/chunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/include/jemalloc/internal/chunk.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/chunk_dss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/include/jemalloc/internal/chunk_dss.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/chunk_mmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/include/jemalloc/internal/chunk_mmap.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/chunk_swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/include/jemalloc/internal/chunk_swap.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/ckh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/include/jemalloc/internal/ckh.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/ctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/include/jemalloc/internal/ctl.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/extent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/include/jemalloc/internal/extent.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/include/jemalloc/internal/hash.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/huge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/include/jemalloc/internal/huge.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/jemalloc_internal.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/include/jemalloc/internal/jemalloc_internal.h.in -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/mb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/include/jemalloc/internal/mb.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/include/jemalloc/internal/mutex.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/private_namespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/include/jemalloc/internal/private_namespace.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/prof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/include/jemalloc/internal/prof.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/ql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/include/jemalloc/internal/ql.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/qr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/include/jemalloc/internal/qr.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/rb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/include/jemalloc/internal/rb.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/rtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/include/jemalloc/internal/rtree.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/include/jemalloc/internal/stats.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/tcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/include/jemalloc/internal/tcache.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/internal/zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/include/jemalloc/internal/zone.h -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/jemalloc.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/include/jemalloc/jemalloc.h.in -------------------------------------------------------------------------------- /deps/jemalloc/include/jemalloc/jemalloc_defs.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/include/jemalloc/jemalloc_defs.h.in -------------------------------------------------------------------------------- /deps/jemalloc/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/install-sh -------------------------------------------------------------------------------- /deps/jemalloc/src/arena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/src/arena.c -------------------------------------------------------------------------------- /deps/jemalloc/src/atomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/src/atomic.c -------------------------------------------------------------------------------- /deps/jemalloc/src/base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/src/base.c -------------------------------------------------------------------------------- /deps/jemalloc/src/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/src/bitmap.c -------------------------------------------------------------------------------- /deps/jemalloc/src/chunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/src/chunk.c -------------------------------------------------------------------------------- /deps/jemalloc/src/chunk_dss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/src/chunk_dss.c -------------------------------------------------------------------------------- /deps/jemalloc/src/chunk_mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/src/chunk_mmap.c -------------------------------------------------------------------------------- /deps/jemalloc/src/chunk_swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/src/chunk_swap.c -------------------------------------------------------------------------------- /deps/jemalloc/src/ckh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/src/ckh.c -------------------------------------------------------------------------------- /deps/jemalloc/src/ctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/src/ctl.c -------------------------------------------------------------------------------- /deps/jemalloc/src/extent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/src/extent.c -------------------------------------------------------------------------------- /deps/jemalloc/src/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/src/hash.c -------------------------------------------------------------------------------- /deps/jemalloc/src/huge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/src/huge.c -------------------------------------------------------------------------------- /deps/jemalloc/src/jemalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/src/jemalloc.c -------------------------------------------------------------------------------- /deps/jemalloc/src/mb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/src/mb.c -------------------------------------------------------------------------------- /deps/jemalloc/src/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/src/mutex.c -------------------------------------------------------------------------------- /deps/jemalloc/src/prof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/src/prof.c -------------------------------------------------------------------------------- /deps/jemalloc/src/rtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/src/rtree.c -------------------------------------------------------------------------------- /deps/jemalloc/src/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/src/stats.c -------------------------------------------------------------------------------- /deps/jemalloc/src/tcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/src/tcache.c -------------------------------------------------------------------------------- /deps/jemalloc/src/zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/src/zone.c -------------------------------------------------------------------------------- /deps/jemalloc/test/allocated.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/test/allocated.c -------------------------------------------------------------------------------- /deps/jemalloc/test/allocated.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/test/allocated.exp -------------------------------------------------------------------------------- /deps/jemalloc/test/allocm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/test/allocm.c -------------------------------------------------------------------------------- /deps/jemalloc/test/allocm.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/test/allocm.exp -------------------------------------------------------------------------------- /deps/jemalloc/test/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/test/bitmap.c -------------------------------------------------------------------------------- /deps/jemalloc/test/bitmap.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/test/bitmap.exp -------------------------------------------------------------------------------- /deps/jemalloc/test/jemalloc_test.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/test/jemalloc_test.h.in -------------------------------------------------------------------------------- /deps/jemalloc/test/mremap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/test/mremap.c -------------------------------------------------------------------------------- /deps/jemalloc/test/mremap.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/test/mremap.exp -------------------------------------------------------------------------------- /deps/jemalloc/test/posix_memalign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/test/posix_memalign.c -------------------------------------------------------------------------------- /deps/jemalloc/test/posix_memalign.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/test/posix_memalign.exp -------------------------------------------------------------------------------- /deps/jemalloc/test/rallocm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/test/rallocm.c -------------------------------------------------------------------------------- /deps/jemalloc/test/rallocm.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/test/rallocm.exp -------------------------------------------------------------------------------- /deps/jemalloc/test/thread_arena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/test/thread_arena.c -------------------------------------------------------------------------------- /deps/jemalloc/test/thread_arena.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/jemalloc/test/thread_arena.exp -------------------------------------------------------------------------------- /deps/linenoise/.gitignore: -------------------------------------------------------------------------------- 1 | linenoise_example* 2 | -------------------------------------------------------------------------------- /deps/linenoise/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/linenoise/Makefile -------------------------------------------------------------------------------- /deps/linenoise/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/linenoise/README.markdown -------------------------------------------------------------------------------- /deps/linenoise/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/linenoise/example.c -------------------------------------------------------------------------------- /deps/linenoise/linenoise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/linenoise/linenoise.c -------------------------------------------------------------------------------- /deps/linenoise/linenoise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/deps/linenoise/linenoise.h -------------------------------------------------------------------------------- /redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/redis.conf -------------------------------------------------------------------------------- /runtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/runtest -------------------------------------------------------------------------------- /setup/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/setup/COPYING.txt -------------------------------------------------------------------------------- /setup/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/setup/Makefile -------------------------------------------------------------------------------- /setup/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/setup/README.txt -------------------------------------------------------------------------------- /setup/Redis Documentation.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=http://redis.io/documentation 3 | -------------------------------------------------------------------------------- /setup/Redis Home.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=http://redis.io 3 | -------------------------------------------------------------------------------- /setup/Redis Windows Port Home.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://github.com/dmajkic/redis 3 | -------------------------------------------------------------------------------- /setup/Redis Windows Service and Setup Home.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://github.com/rgl/redis 3 | -------------------------------------------------------------------------------- /setup/SetACL.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/setup/SetACL.exe -------------------------------------------------------------------------------- /setup/redis-setup-wizard-small.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/setup/redis-setup-wizard-small.bmp -------------------------------------------------------------------------------- /setup/redis-setup-wizard.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/setup/redis-setup-wizard.bmp -------------------------------------------------------------------------------- /setup/redis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/setup/redis.ico -------------------------------------------------------------------------------- /setup/redis.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/setup/redis.iss -------------------------------------------------------------------------------- /setup/service-account.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/setup/service-account.pas -------------------------------------------------------------------------------- /setup/service.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/setup/service.pas -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/adlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/adlist.c -------------------------------------------------------------------------------- /src/adlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/adlist.h -------------------------------------------------------------------------------- /src/ae.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/ae.c -------------------------------------------------------------------------------- /src/ae.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/ae.h -------------------------------------------------------------------------------- /src/ae_epoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/ae_epoll.c -------------------------------------------------------------------------------- /src/ae_kqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/ae_kqueue.c -------------------------------------------------------------------------------- /src/ae_select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/ae_select.c -------------------------------------------------------------------------------- /src/ae_ws2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/ae_ws2.c -------------------------------------------------------------------------------- /src/anet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/anet.c -------------------------------------------------------------------------------- /src/anet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/anet.h -------------------------------------------------------------------------------- /src/aof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/aof.c -------------------------------------------------------------------------------- /src/bio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/bio.c -------------------------------------------------------------------------------- /src/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/bio.h -------------------------------------------------------------------------------- /src/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/config.c -------------------------------------------------------------------------------- /src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/config.h -------------------------------------------------------------------------------- /src/db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/db.c -------------------------------------------------------------------------------- /src/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/debug.c -------------------------------------------------------------------------------- /src/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/dict.c -------------------------------------------------------------------------------- /src/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/dict.h -------------------------------------------------------------------------------- /src/endian.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/endian.c -------------------------------------------------------------------------------- /src/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/endian.h -------------------------------------------------------------------------------- /src/fmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/fmacros.h -------------------------------------------------------------------------------- /src/help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/help.h -------------------------------------------------------------------------------- /src/intset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/intset.c -------------------------------------------------------------------------------- /src/intset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/intset.h -------------------------------------------------------------------------------- /src/lzf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/lzf.h -------------------------------------------------------------------------------- /src/lzfP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/lzfP.h -------------------------------------------------------------------------------- /src/lzf_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/lzf_c.c -------------------------------------------------------------------------------- /src/lzf_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/lzf_d.c -------------------------------------------------------------------------------- /src/mkreleasehdr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/mkreleasehdr.sh -------------------------------------------------------------------------------- /src/multi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/multi.c -------------------------------------------------------------------------------- /src/networking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/networking.c -------------------------------------------------------------------------------- /src/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/object.c -------------------------------------------------------------------------------- /src/pqsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/pqsort.c -------------------------------------------------------------------------------- /src/pqsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/pqsort.h -------------------------------------------------------------------------------- /src/pubsub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/pubsub.c -------------------------------------------------------------------------------- /src/rdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/rdb.c -------------------------------------------------------------------------------- /src/redis-benchmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/redis-benchmark.c -------------------------------------------------------------------------------- /src/redis-check-aof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/redis-check-aof.c -------------------------------------------------------------------------------- /src/redis-check-dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/redis-check-dump.c -------------------------------------------------------------------------------- /src/redis-cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/redis-cli.c -------------------------------------------------------------------------------- /src/redis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/redis.c -------------------------------------------------------------------------------- /src/redis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/redis.h -------------------------------------------------------------------------------- /src/release.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/release.c -------------------------------------------------------------------------------- /src/replication.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/replication.c -------------------------------------------------------------------------------- /src/sds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/sds.c -------------------------------------------------------------------------------- /src/sds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/sds.h -------------------------------------------------------------------------------- /src/service-setup-helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/service-setup-helper.c -------------------------------------------------------------------------------- /src/service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/service.c -------------------------------------------------------------------------------- /src/service.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/service.rc -------------------------------------------------------------------------------- /src/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/sha1.c -------------------------------------------------------------------------------- /src/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/sha1.h -------------------------------------------------------------------------------- /src/slowlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/slowlog.c -------------------------------------------------------------------------------- /src/slowlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/slowlog.h -------------------------------------------------------------------------------- /src/solarisfixes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/solarisfixes.h -------------------------------------------------------------------------------- /src/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/sort.c -------------------------------------------------------------------------------- /src/syncio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/syncio.c -------------------------------------------------------------------------------- /src/t_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/t_hash.c -------------------------------------------------------------------------------- /src/t_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/t_list.c -------------------------------------------------------------------------------- /src/t_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/t_set.c -------------------------------------------------------------------------------- /src/t_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/t_string.c -------------------------------------------------------------------------------- /src/t_zset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/t_zset.c -------------------------------------------------------------------------------- /src/testhelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/testhelp.h -------------------------------------------------------------------------------- /src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/util.c -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/util.h -------------------------------------------------------------------------------- /src/valgrind.sup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/valgrind.sup -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/version.h -------------------------------------------------------------------------------- /src/vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/vm.c -------------------------------------------------------------------------------- /src/win32err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/win32err.h -------------------------------------------------------------------------------- /src/win32fixes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/win32fixes.c -------------------------------------------------------------------------------- /src/win32fixes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/win32fixes.h -------------------------------------------------------------------------------- /src/ziplist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/ziplist.c -------------------------------------------------------------------------------- /src/ziplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/ziplist.h -------------------------------------------------------------------------------- /src/zipmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/zipmap.c -------------------------------------------------------------------------------- /src/zipmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/zipmap.h -------------------------------------------------------------------------------- /src/zmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/zmalloc.c -------------------------------------------------------------------------------- /src/zmalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/src/zmalloc.h -------------------------------------------------------------------------------- /tests/assets/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/tests/assets/default.conf -------------------------------------------------------------------------------- /tests/helpers/gen_write_load.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/tests/helpers/gen_write_load.tcl -------------------------------------------------------------------------------- /tests/integration/aof-race.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/tests/integration/aof-race.tcl -------------------------------------------------------------------------------- /tests/integration/aof.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/tests/integration/aof.tcl -------------------------------------------------------------------------------- /tests/integration/redis-cli.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/tests/integration/redis-cli.tcl -------------------------------------------------------------------------------- /tests/integration/replication-2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/tests/integration/replication-2.tcl -------------------------------------------------------------------------------- /tests/integration/replication-3.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/tests/integration/replication-3.tcl -------------------------------------------------------------------------------- /tests/integration/replication.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/tests/integration/replication.tcl -------------------------------------------------------------------------------- /tests/support/redis.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/tests/support/redis.tcl -------------------------------------------------------------------------------- /tests/support/server.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/tests/support/server.tcl -------------------------------------------------------------------------------- /tests/support/test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/tests/support/test.tcl -------------------------------------------------------------------------------- /tests/support/tmpfile.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/tests/support/tmpfile.tcl -------------------------------------------------------------------------------- /tests/support/util.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/tests/support/util.tcl -------------------------------------------------------------------------------- /tests/test_helper.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/tests/test_helper.tcl -------------------------------------------------------------------------------- /tests/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /tests/unit/auth.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/tests/unit/auth.tcl -------------------------------------------------------------------------------- /tests/unit/basic.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/tests/unit/basic.tcl -------------------------------------------------------------------------------- /tests/unit/cas.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/tests/unit/cas.tcl -------------------------------------------------------------------------------- /tests/unit/expire.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/tests/unit/expire.tcl -------------------------------------------------------------------------------- /tests/unit/introspection.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/tests/unit/introspection.tcl -------------------------------------------------------------------------------- /tests/unit/maxmemory.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/tests/unit/maxmemory.tcl -------------------------------------------------------------------------------- /tests/unit/other.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/tests/unit/other.tcl -------------------------------------------------------------------------------- /tests/unit/printver.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/tests/unit/printver.tcl -------------------------------------------------------------------------------- /tests/unit/protocol.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/tests/unit/protocol.tcl -------------------------------------------------------------------------------- /tests/unit/pubsub.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/tests/unit/pubsub.tcl -------------------------------------------------------------------------------- /tests/unit/quit.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/tests/unit/quit.tcl -------------------------------------------------------------------------------- /tests/unit/slowlog.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/tests/unit/slowlog.tcl -------------------------------------------------------------------------------- /tests/unit/sort.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/tests/unit/sort.tcl -------------------------------------------------------------------------------- /tests/unit/type/hash.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/tests/unit/type/hash.tcl -------------------------------------------------------------------------------- /tests/unit/type/list-2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/tests/unit/type/list-2.tcl -------------------------------------------------------------------------------- /tests/unit/type/list-3.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/tests/unit/type/list-3.tcl -------------------------------------------------------------------------------- /tests/unit/type/list-common.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/tests/unit/type/list-common.tcl -------------------------------------------------------------------------------- /tests/unit/type/list.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/tests/unit/type/list.tcl -------------------------------------------------------------------------------- /tests/unit/type/set.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/tests/unit/type/set.tcl -------------------------------------------------------------------------------- /tests/unit/type/zset.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/tests/unit/type/zset.tcl -------------------------------------------------------------------------------- /utils/generate-command-help.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/utils/generate-command-help.rb -------------------------------------------------------------------------------- /utils/install_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/utils/install_server.sh -------------------------------------------------------------------------------- /utils/mkrelease.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/utils/mkrelease.sh -------------------------------------------------------------------------------- /utils/mktarball.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/utils/mktarball.sh -------------------------------------------------------------------------------- /utils/redis.conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/utils/redis.conf.tpl -------------------------------------------------------------------------------- /utils/redis_init_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/utils/redis_init_script -------------------------------------------------------------------------------- /utils/redis_init_script.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/redis/HEAD/utils/redis_init_script.tpl --------------------------------------------------------------------------------