实例介绍
还在为环境没有网络,无法安装redis源码包的编译组件而烦恼吗,这款解压即用的redis已编译安装包,完美符合您的要求,解压后进入目录执行src/redis-server redis.conf 即可开启服务
【实例截图】
【核心代码】
redis-3.0.7.tar
└── redis-3.0.7
├── 00-RELEASENOTES
├── 6379.log
├── 6379_2.log
├── BUGS
├── CONTRIBUTING
├── COPYING
├── INSTALL
├── MANIFESTO
├── Makefile
├── README
├── deps
│ ├── Makefile
│ ├── hiredis
│ │ ├── CHANGELOG.md
│ │ ├── COPYING
│ │ ├── Makefile
│ │ ├── README.md
│ │ ├── adapters
│ │ │ ├── ae.h
│ │ │ ├── libev.h
│ │ │ ├── libevent.h
│ │ │ └── libuv.h
│ │ ├── async.c
│ │ ├── async.h
│ │ ├── async.o
│ │ ├── 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
│ │ ├── hiredis.o
│ │ ├── libhiredis.a
│ │ ├── net.c
│ │ ├── net.h
│ │ ├── net.o
│ │ ├── sds.c
│ │ ├── sds.h
│ │ ├── sds.o
│ │ ├── test.c
│ │ └── zmalloc.h
│ ├── jemalloc
│ │ ├── COPYING
│ │ ├── ChangeLog
│ │ ├── INSTALL
│ │ ├── Makefile
│ │ ├── Makefile.in
│ │ ├── README
│ │ ├── VERSION
│ │ ├── autogen.sh
│ │ ├── bin
│ │ │ ├── jemalloc.sh
│ │ │ ├── jemalloc.sh.in
│ │ │ └── pprof
│ │ ├── config.guess
│ │ ├── config.log
│ │ ├── config.stamp
│ │ ├── config.stamp.in
│ │ ├── config.status
│ │ ├── config.sub
│ │ ├── configure
│ │ ├── configure.ac
│ │ ├── coverage.sh
│ │ ├── doc
│ │ │ ├── html.xsl
│ │ │ ├── html.xsl.in
│ │ │ ├── jemalloc.3
│ │ │ ├── jemalloc.html
│ │ │ ├── jemalloc.xml
│ │ │ ├── jemalloc.xml.in
│ │ │ ├── manpages.xsl
│ │ │ ├── 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
│ │ │ │ │ ├── jemalloc_internal.h.in
│ │ │ │ │ ├── jemalloc_internal_defs.h
│ │ │ │ │ ├── jemalloc_internal_defs.h.in
│ │ │ │ │ ├── jemalloc_internal_macros.h
│ │ │ │ │ ├── mb.h
│ │ │ │ │ ├── mutex.h
│ │ │ │ │ ├── private_namespace.h
│ │ │ │ │ ├── private_namespace.sh
│ │ │ │ │ ├── private_symbols.txt
│ │ │ │ │ ├── private_unnamespace.h
│ │ │ │ │ ├── private_unnamespace.sh
│ │ │ │ │ ├── prng.h
│ │ │ │ │ ├── prof.h
│ │ │ │ │ ├── public_namespace.h
│ │ │ │ │ ├── public_namespace.sh
│ │ │ │ │ ├── public_symbols.txt
│ │ │ │ │ ├── public_unnamespace.h
│ │ │ │ │ ├── public_unnamespace.sh
│ │ │ │ │ ├── ql.h
│ │ │ │ │ ├── qr.h
│ │ │ │ │ ├── quarantine.h
│ │ │ │ │ ├── rb.h
│ │ │ │ │ ├── rtree.h
│ │ │ │ │ ├── size_classes.h
│ │ │ │ │ ├── size_classes.sh
│ │ │ │ │ ├── stats.h
│ │ │ │ │ ├── tcache.h
│ │ │ │ │ ├── tsd.h
│ │ │ │ │ └── util.h
│ │ │ │ ├── jemalloc.h
│ │ │ │ ├── jemalloc.sh
│ │ │ │ ├── jemalloc_defs.h
│ │ │ │ ├── jemalloc_defs.h.in
│ │ │ │ ├── jemalloc_macros.h
│ │ │ │ ├── jemalloc_macros.h.in
│ │ │ │ ├── jemalloc_mangle.h
│ │ │ │ ├── jemalloc_mangle.sh
│ │ │ │ ├── jemalloc_mangle_jet.h
│ │ │ │ ├── jemalloc_protos.h
│ │ │ │ ├── jemalloc_protos.h.in
│ │ │ │ ├── jemalloc_protos_jet.h
│ │ │ │ ├── jemalloc_rename.h
│ │ │ │ └── jemalloc_rename.sh
│ │ │ └── msvc_compat
│ │ │ ├── inttypes.h
│ │ │ ├── stdbool.h
│ │ │ ├── stdint.h
│ │ │ └── strings.h
│ │ ├── install-sh
│ │ ├── lib
│ │ │ └── libjemalloc.a
│ │ ├── src
│ │ │ ├── arena.c
│ │ │ ├── arena.d
│ │ │ ├── arena.o
│ │ │ ├── atomic.c
│ │ │ ├── atomic.d
│ │ │ ├── atomic.o
│ │ │ ├── base.c
│ │ │ ├── base.d
│ │ │ ├── base.o
│ │ │ ├── bitmap.c
│ │ │ ├── bitmap.d
│ │ │ ├── bitmap.o
│ │ │ ├── chunk.c
│ │ │ ├── chunk.d
│ │ │ ├── chunk.o
│ │ │ ├── chunk_dss.c
│ │ │ ├── chunk_dss.d
│ │ │ ├── chunk_dss.o
│ │ │ ├── chunk_mmap.c
│ │ │ ├── chunk_mmap.d
│ │ │ ├── chunk_mmap.o
│ │ │ ├── ckh.c
│ │ │ ├── ckh.d
│ │ │ ├── ckh.o
│ │ │ ├── ctl.c
│ │ │ ├── ctl.d
│ │ │ ├── ctl.o
│ │ │ ├── extent.c
│ │ │ ├── extent.d
│ │ │ ├── extent.o
│ │ │ ├── hash.c
│ │ │ ├── hash.d
│ │ │ ├── hash.o
│ │ │ ├── huge.c
│ │ │ ├── huge.d
│ │ │ ├── huge.o
│ │ │ ├── jemalloc.c
│ │ │ ├── jemalloc.d
│ │ │ ├── jemalloc.o
│ │ │ ├── mb.c
│ │ │ ├── mb.d
│ │ │ ├── mb.o
│ │ │ ├── mutex.c
│ │ │ ├── mutex.d
│ │ │ ├── mutex.o
│ │ │ ├── prof.c
│ │ │ ├── prof.d
│ │ │ ├── prof.o
│ │ │ ├── quarantine.c
│ │ │ ├── quarantine.d
│ │ │ ├── quarantine.o
│ │ │ ├── rtree.c
│ │ │ ├── rtree.d
│ │ │ ├── rtree.o
│ │ │ ├── stats.c
│ │ │ ├── stats.d
│ │ │ ├── stats.o
│ │ │ ├── tcache.c
│ │ │ ├── tcache.d
│ │ │ ├── tcache.o
│ │ │ ├── tsd.c
│ │ │ ├── tsd.d
│ │ │ ├── tsd.o
│ │ │ ├── util.c
│ │ │ ├── util.d
│ │ │ ├── util.o
│ │ │ └── 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
│ │ │ ├── jemalloc_test.h
│ │ │ ├── jemalloc_test.h.in
│ │ │ ├── jemalloc_test_defs.h
│ │ │ ├── jemalloc_test_defs.h.in
│ │ │ ├── math.h
│ │ │ ├── mq.h
│ │ │ ├── mtx.h
│ │ │ ├── test.h
│ │ │ └── thd.h
│ │ ├── integration
│ │ │ ├── MALLOCX_ARENA.c
│ │ │ ├── aligned_alloc.c
│ │ │ ├── allocated.c
│ │ │ ├── allocm.c
│ │ │ ├── mallocx.c
│ │ │ ├── mremap.c
│ │ │ ├── posix_memalign.c
│ │ │ ├── rallocm.c
│ │ │ ├── rallocx.c
│ │ │ ├── thread_arena.c
│ │ │ ├── thread_tcache_enabled.c
│ │ │ └── xallocx.c
│ │ ├── src
│ │ │ ├── SFMT.c
│ │ │ ├── math.c
│ │ │ ├── mtx.c
│ │ │ ├── test.c
│ │ │ └── thd.c
│ │ ├── test.sh
│ │ ├── test.sh.in
│ │ └── unit
│ │ ├── SFMT.c
│ │ ├── bitmap.c
│ │ ├── ckh.c
│ │ ├── hash.c
│ │ ├── junk.c
│ │ ├── mallctl.c
│ │ ├── math.c
│ │ ├── mq.c
│ │ ├── mtx.c
│ │ ├── prof_accum.c
│ │ ├── prof_accum.h
│ │ ├── prof_accum_a.c
│ │ ├── prof_accum_b.c
│ │ ├── prof_gdump.c
│ │ ├── prof_idump.c
│ │ ├── ql.c
│ │ ├── qr.c
│ │ ├── quarantine.c
│ │ ├── rb.c
│ │ ├── rtree.c
│ │ ├── stats.c
│ │ ├── tsd.c
│ │ ├── util.c
│ │ └── zero.c
│ ├── linenoise
│ │ ├── Makefile
│ │ ├── README.markdown
│ │ ├── example.c
│ │ ├── linenoise.c
│ │ ├── linenoise.h
│ │ └── linenoise.o
│ ├── 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
│ │ │ ├── fpconv.o
│ │ │ ├── lapi.c
│ │ │ ├── lapi.h
│ │ │ ├── lapi.o
│ │ │ ├── lauxlib.c
│ │ │ ├── lauxlib.h
│ │ │ ├── lauxlib.o
│ │ │ ├── lbaselib.c
│ │ │ ├── lbaselib.o
│ │ │ ├── lcode.c
│ │ │ ├── lcode.h
│ │ │ ├── lcode.o
│ │ │ ├── ldblib.c
│ │ │ ├── ldblib.o
│ │ │ ├── ldebug.c
│ │ │ ├── ldebug.h
│ │ │ ├── ldebug.o
│ │ │ ├── ldo.c
│ │ │ ├── ldo.h
│ │ │ ├── ldo.o
│ │ │ ├── ldump.c
│ │ │ ├── ldump.o
│ │ │ ├── lfunc.c
│ │ │ ├── lfunc.h
│ │ │ ├── lfunc.o
│ │ │ ├── lgc.c
│ │ │ ├── lgc.h
│ │ │ ├── lgc.o
│ │ │ ├── liblua.a
│ │ │ ├── linit.c
│ │ │ ├── linit.o
│ │ │ ├── liolib.c
│ │ │ ├── liolib.o
│ │ │ ├── llex.c
│ │ │ ├── llex.h
│ │ │ ├── llex.o
│ │ │ ├── llimits.h
│ │ │ ├── lmathlib.c
│ │ │ ├── lmathlib.o
│ │ │ ├── lmem.c
│ │ │ ├── lmem.h
│ │ │ ├── lmem.o
│ │ │ ├── loadlib.c
│ │ │ ├── loadlib.o
│ │ │ ├── lobject.c
│ │ │ ├── lobject.h
│ │ │ ├── lobject.o
│ │ │ ├── lopcodes.c
│ │ │ ├── lopcodes.h
│ │ │ ├── lopcodes.o
│ │ │ ├── loslib.c
│ │ │ ├── loslib.o
│ │ │ ├── lparser.c
│ │ │ ├── lparser.h
│ │ │ ├── lparser.o
│ │ │ ├── lstate.c
│ │ │ ├── lstate.h
│ │ │ ├── lstate.o
│ │ │ ├── lstring.c
│ │ │ ├── lstring.h
│ │ │ ├── lstring.o
│ │ │ ├── lstrlib.c
│ │ │ ├── lstrlib.o
│ │ │ ├── ltable.c
│ │ │ ├── ltable.h
│ │ │ ├── ltable.o
│ │ │ ├── ltablib.c
│ │ │ ├── ltablib.o
│ │ │ ├── ltm.c
│ │ │ ├── ltm.h
│ │ │ ├── ltm.o
│ │ │ ├── lua
│ │ │ ├── lua.c
│ │ │ ├── lua.h
│ │ │ ├── lua.o
│ │ │ ├── lua_bit.c
│ │ │ ├── lua_bit.o
│ │ │ ├── lua_cjson.c
│ │ │ ├── lua_cjson.o
│ │ │ ├── lua_cmsgpack.c
│ │ │ ├── lua_cmsgpack.o
│ │ │ ├── lua_struct.c
│ │ │ ├── lua_struct.o
│ │ │ ├── luac
│ │ │ ├── luac.c
│ │ │ ├── luac.o
│ │ │ ├── luaconf.h
│ │ │ ├── lualib.h
│ │ │ ├── lundump.c
│ │ │ ├── lundump.h
│ │ │ ├── lundump.o
│ │ │ ├── lvm.c
│ │ │ ├── lvm.h
│ │ │ ├── lvm.o
│ │ │ ├── lzio.c
│ │ │ ├── lzio.h
│ │ │ ├── lzio.o
│ │ │ ├── print.c
│ │ │ ├── print.o
│ │ │ ├── strbuf.c
│ │ │ ├── strbuf.h
│ │ │ └── strbuf.o
│ │ └── 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
├── dump.rdb
├── nodes-6379.conf
├── nodes-6380.conf
├── redis-3.2.1.gem
├── redis.conf
├── redis2.conf
├── runtest
├── runtest-cluster
├── runtest-sentinel
├── sentinel.conf
├── src
│ ├── Makefile
│ ├── Makefile.dep
│ ├── adlist.c
│ ├── adlist.h
│ ├── adlist.o
│ ├── ae.c
│ ├── ae.h
│ ├── ae.o
│ ├── ae_epoll.c
│ ├── ae_evport.c
│ ├── ae_kqueue.c
│ ├── ae_select.c
│ ├── anet.c
│ ├── anet.h
│ ├── anet.o
│ ├── aof.c
│ ├── aof.o
│ ├── asciilogo.h
│ ├── bio.c
│ ├── bio.h
│ ├── bio.o
│ ├── bitops.c
│ ├── bitops.o
│ ├── blocked.c
│ ├── blocked.o
│ ├── cluster.c
│ ├── cluster.h
│ ├── cluster.o
│ ├── config.c
│ ├── config.h
│ ├── config.o
│ ├── crc16.c
│ ├── crc16.o
│ ├── crc64.c
│ ├── crc64.h
│ ├── crc64.o
│ ├── db.c
│ ├── db.o
│ ├── debug.c
│ ├── debug.o
│ ├── dict.c
│ ├── dict.h
│ ├── dict.o
│ ├── dump.rdb
│ ├── endianconv.c
│ ├── endianconv.h
│ ├── endianconv.o
│ ├── fmacros.h
│ ├── help.h
│ ├── hyperloglog.c
│ ├── hyperloglog.o
│ ├── intset.c
│ ├── intset.h
│ ├── intset.o
│ ├── latency.c
│ ├── latency.h
│ ├── latency.o
│ ├── lzf.h
│ ├── lzfP.h
│ ├── lzf_c.c
│ ├── lzf_c.o
│ ├── lzf_d.c
│ ├── lzf_d.o
│ ├── memtest.c
│ ├── memtest.o
│ ├── mkreleasehdr.sh
│ ├── multi.c
│ ├── multi.o
│ ├── networking.c
│ ├── networking.o
│ ├── notify.c
│ ├── notify.o
│ ├── object.c
│ ├── object.o
│ ├── pqsort.c
│ ├── pqsort.h
│ ├── pqsort.o
│ ├── pubsub.c
│ ├── pubsub.o
│ ├── rand.c
│ ├── rand.h
│ ├── rand.o
│ ├── rdb.c
│ ├── rdb.h
│ ├── rdb.o
│ ├── redis-benchmark
│ ├── redis-benchmark.c
│ ├── redis-benchmark.o
│ ├── redis-check-aof
│ ├── redis-check-aof.c
│ ├── redis-check-aof.o
│ ├── redis-check-dump
│ ├── redis-check-dump.c
│ ├── redis-check-dump.o
│ ├── redis-cli
│ ├── redis-cli.c
│ ├── redis-cli.o
│ ├── redis-sentinel
│ ├── redis-server
│ ├── redis-trib.rb
│ ├── redis.c
│ ├── redis.h
│ ├── redis.o
│ ├── redisassert.h
│ ├── release.c
│ ├── release.h
│ ├── release.o
│ ├── replication.c
│ ├── replication.o
│ ├── rio.c
│ ├── rio.h
│ ├── rio.o
│ ├── scripting.c
│ ├── scripting.o
│ ├── sds.c
│ ├── sds.h
│ ├── sds.o
│ ├── sentinel.c
│ ├── sentinel.o
│ ├── setproctitle.c
│ ├── setproctitle.o
│ ├── sha1.c
│ ├── sha1.h
│ ├── sha1.o
│ ├── slowlog.c
│ ├── slowlog.h
│ ├── slowlog.o
│ ├── solarisfixes.h
│ ├── sort.c
│ ├── sort.o
│ ├── sparkline.c
│ ├── sparkline.h
│ ├── sparkline.o
│ ├── syncio.c
│ ├── syncio.o
│ ├── t_hash.c
│ ├── t_hash.o
│ ├── t_list.c
│ ├── t_list.o
│ ├── t_set.c
│ ├── t_set.o
│ ├── t_string.c
│ ├── t_string.o
│ ├── t_zset.c
│ ├── t_zset.o
│ ├── testhelp.h
│ ├── util.c
│ ├── util.h
│ ├── util.o
│ ├── valgrind.sup
│ ├── version.h
│ ├── ziplist.c
│ ├── ziplist.h
│ ├── ziplist.o
│ ├── zipmap.c
│ ├── zipmap.h
│ ├── zipmap.o
│ ├── zmalloc.c
│ ├── zmalloc.h
│ └── zmalloc.o
├── 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
│ │ │ ├── helpers
│ │ │ │ └── onlydots.tcl
│ │ │ └── includes
│ │ │ └── init-tests.tcl
│ │ └── tmp
│ ├── 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
│ │ │ └── includes
│ │ │ └── init-tests.tcl
│ │ └── tmp
│ ├── support
│ │ ├── cluster.tcl
│ │ ├── redis.tcl
│ │ ├── server.tcl
│ │ ├── test.tcl
│ │ ├── tmpfile.tcl
│ │ └── util.tcl
│ ├── test_helper.tcl
│ ├── tmp
│ └── unit
│ ├── aofrw.tcl
│ ├── auth.tcl
│ ├── basic.tcl
│ ├── bitops.tcl
│ ├── dump.tcl
│ ├── expire.tcl
│ ├── hyperloglog.tcl
│ ├── introspection.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
│ ├── list-2.tcl
│ ├── list-3.tcl
│ ├── list-common.tcl
│ ├── list.tcl
│ ├── set.tcl
│ └── zset.tcl
└── utils
├── build-static-symbols.tcl
├── cluster_fail_time.tcl
├── create-cluster
│ ├── README
│ └── create-cluster
├── generate-command-help.rb
├── hyperloglog
│ ├── hll-err.rb
│ └── hll-gnuplot-graph.rb
├── install_server.sh
├── lru
│ ├── README
│ └── test-lru.rb
├── mkrelease.sh
├── redis-copy.rb
├── redis-sha1.rb
├── redis_init_script
├── redis_init_script.tpl
├── speed-regression.tcl
└── whatisdoing.sh
48 directories, 690 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论