redis-server 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/LICENSE +38 -0
- data/README.md +33 -0
- data/bin/redis +114 -0
- data/redis/Makefile +5 -0
- data/redis/extconf.rb +3 -0
- data/redis/redis-2.2.11/00-RELEASENOTES +199 -0
- data/redis/redis-2.2.11/BUGS +1 -0
- data/redis/redis-2.2.11/CONTRIBUTING +13 -0
- data/redis/redis-2.2.11/COPYING +10 -0
- data/redis/redis-2.2.11/Changelog +1032 -0
- data/redis/redis-2.2.11/INSTALL +30 -0
- data/redis/redis-2.2.11/Makefile +22 -0
- data/redis/redis-2.2.11/README +83 -0
- data/redis/redis-2.2.11/TODO +4 -0
- data/redis/redis-2.2.11/client-libraries/README +11 -0
- data/redis/redis-2.2.11/deps/hiredis/COPYING +10 -0
- data/redis/redis-2.2.11/deps/hiredis/Makefile +115 -0
- data/redis/redis-2.2.11/deps/hiredis/README.md +311 -0
- data/redis/redis-2.2.11/deps/hiredis/TODO +2 -0
- data/redis/redis-2.2.11/deps/hiredis/adapters/ae.h +95 -0
- data/redis/redis-2.2.11/deps/hiredis/adapters/libev.h +113 -0
- data/redis/redis-2.2.11/deps/hiredis/adapters/libevent.h +76 -0
- data/redis/redis-2.2.11/deps/hiredis/async.c +321 -0
- data/redis/redis-2.2.11/deps/hiredis/async.h +112 -0
- data/redis/redis-2.2.11/deps/hiredis/example-ae.c +53 -0
- data/redis/redis-2.2.11/deps/hiredis/example-libev.c +47 -0
- data/redis/redis-2.2.11/deps/hiredis/example-libevent.c +48 -0
- data/redis/redis-2.2.11/deps/hiredis/example.c +67 -0
- data/redis/redis-2.2.11/deps/hiredis/fmacros.h +15 -0
- data/redis/redis-2.2.11/deps/hiredis/hiredis.c +1058 -0
- data/redis/redis-2.2.11/deps/hiredis/hiredis.h +170 -0
- data/redis/redis-2.2.11/deps/hiredis/net.c +170 -0
- data/redis/redis-2.2.11/deps/hiredis/net.h +43 -0
- data/redis/redis-2.2.11/deps/hiredis/sds.c +479 -0
- data/redis/redis-2.2.11/deps/hiredis/sds.h +77 -0
- data/redis/redis-2.2.11/deps/hiredis/test.c +479 -0
- data/redis/redis-2.2.11/deps/hiredis/util.h +40 -0
- data/redis/redis-2.2.11/deps/linenoise/Makefile +10 -0
- data/redis/redis-2.2.11/deps/linenoise/README.markdown +45 -0
- data/redis/redis-2.2.11/deps/linenoise/example.c +27 -0
- data/redis/redis-2.2.11/deps/linenoise/linenoise.c +609 -0
- data/redis/redis-2.2.11/deps/linenoise/linenoise.h +55 -0
- data/redis/redis-2.2.11/design-documents/REDIS-CLUSTER +214 -0
- data/redis/redis-2.2.11/design-documents/REDIS-CLUSTER-2 +343 -0
- data/redis/redis-2.2.11/doc/AppendCommand.html +48 -0
- data/redis/redis-2.2.11/doc/AppendOnlyFileHowto.html +41 -0
- data/redis/redis-2.2.11/doc/AuthCommand.html +39 -0
- data/redis/redis-2.2.11/doc/Benchmarks.html +129 -0
- data/redis/redis-2.2.11/doc/BgrewriteaofCommand.html +41 -0
- data/redis/redis-2.2.11/doc/BgsaveCommand.html +39 -0
- data/redis/redis-2.2.11/doc/BlpopCommand.html +51 -0
- data/redis/redis-2.2.11/doc/BrpoplpushCommand.html +39 -0
- data/redis/redis-2.2.11/doc/CommandReference.html +47 -0
- data/redis/redis-2.2.11/doc/Comparisons.html +42 -0
- data/redis/redis-2.2.11/doc/ConfigCommand.html +76 -0
- data/redis/redis-2.2.11/doc/Configuration.html +38 -0
- data/redis/redis-2.2.11/doc/ConnectionHandlingSidebar.html +36 -0
- data/redis/redis-2.2.11/doc/ControlCommandsSidebar.html +36 -0
- data/redis/redis-2.2.11/doc/Credits.html +38 -0
- data/redis/redis-2.2.11/doc/DbsizeCommand.html +38 -0
- data/redis/redis-2.2.11/doc/DelCommand.html +41 -0
- data/redis/redis-2.2.11/doc/DesignPatterns.html +37 -0
- data/redis/redis-2.2.11/doc/EventLibray.html +44 -0
- data/redis/redis-2.2.11/doc/ExistsCommand.html +42 -0
- data/redis/redis-2.2.11/doc/ExpireCommand.html +96 -0
- data/redis/redis-2.2.11/doc/FAQ.html +70 -0
- data/redis/redis-2.2.11/doc/Features.html +38 -0
- data/redis/redis-2.2.11/doc/FlushallCommand.html +39 -0
- data/redis/redis-2.2.11/doc/FlushdbCommand.html +39 -0
- data/redis/redis-2.2.11/doc/FromSqlToDataStructures.html +37 -0
- data/redis/redis-2.2.11/doc/GenericCommandsSidebar.html +36 -0
- data/redis/redis-2.2.11/doc/GetCommand.html +39 -0
- data/redis/redis-2.2.11/doc/GetbitCommand.html +39 -0
- data/redis/redis-2.2.11/doc/GetsetCommand.html +38 -0
- data/redis/redis-2.2.11/doc/HackingStrings.html +83 -0
- data/redis/redis-2.2.11/doc/HashCommandsSidebar.html +36 -0
- data/redis/redis-2.2.11/doc/Hashes.html +37 -0
- data/redis/redis-2.2.11/doc/HdelCommand.html +39 -0
- data/redis/redis-2.2.11/doc/HexistsCommand.html +39 -0
- data/redis/redis-2.2.11/doc/HgetCommand.html +39 -0
- data/redis/redis-2.2.11/doc/HgetallCommand.html +40 -0
- data/redis/redis-2.2.11/doc/HincrbyCommand.html +45 -0
- data/redis/redis-2.2.11/doc/HlenCommand.html +38 -0
- data/redis/redis-2.2.11/doc/HmgetCommand.html +40 -0
- data/redis/redis-2.2.11/doc/HmsetCommand.html +40 -0
- data/redis/redis-2.2.11/doc/HsetCommand.html +40 -0
- data/redis/redis-2.2.11/doc/HsetnxCommand.html +41 -0
- data/redis/redis-2.2.11/doc/IncrCommand.html +43 -0
- data/redis/redis-2.2.11/doc/InfoCommand.html +48 -0
- data/redis/redis-2.2.11/doc/IntroductionToRedisDataTypes.html +152 -0
- data/redis/redis-2.2.11/doc/KeysCommand.html +43 -0
- data/redis/redis-2.2.11/doc/LastsaveCommand.html +39 -0
- data/redis/redis-2.2.11/doc/LindexCommand.html +40 -0
- data/redis/redis-2.2.11/doc/ListCommandsSidebar.html +36 -0
- data/redis/redis-2.2.11/doc/Lists.html +42 -0
- data/redis/redis-2.2.11/doc/LlenCommand.html +41 -0
- data/redis/redis-2.2.11/doc/LpopCommand.html +41 -0
- data/redis/redis-2.2.11/doc/LrangeCommand.html +47 -0
- data/redis/redis-2.2.11/doc/LremCommand.html +41 -0
- data/redis/redis-2.2.11/doc/LsetCommand.html +38 -0
- data/redis/redis-2.2.11/doc/LtrimCommand.html +47 -0
- data/redis/redis-2.2.11/doc/MgetCommand.html +52 -0
- data/redis/redis-2.2.11/doc/MonitorCommand.html +63 -0
- data/redis/redis-2.2.11/doc/MoveCommand.html +42 -0
- data/redis/redis-2.2.11/doc/MsetCommand.html +44 -0
- data/redis/redis-2.2.11/doc/MultiExecCommand.html +166 -0
- data/redis/redis-2.2.11/doc/NonexistentCommands.html +51 -0
- data/redis/redis-2.2.11/doc/ObjectHashMappers.html +39 -0
- data/redis/redis-2.2.11/doc/Pipelining.html +36 -0
- data/redis/redis-2.2.11/doc/ProgrammingExamples.html +38 -0
- data/redis/redis-2.2.11/doc/ProtocolSpecification.html +137 -0
- data/redis/redis-2.2.11/doc/PublishSubscribe.html +115 -0
- data/redis/redis-2.2.11/doc/QuickStart.html +68 -0
- data/redis/redis-2.2.11/doc/QuitCommand.html +38 -0
- data/redis/redis-2.2.11/doc/README.html +119 -0
- data/redis/redis-2.2.11/doc/RandomkeyCommand.html +39 -0
- data/redis/redis-2.2.11/doc/Redis0100ChangeLog.html +67 -0
- data/redis/redis-2.2.11/doc/Redis0900ChangeLog.html +56 -0
- data/redis/redis-2.2.11/doc/RedisBigData.html +61 -0
- data/redis/redis-2.2.11/doc/RedisCLI.html +37 -0
- data/redis/redis-2.2.11/doc/RedisEventLibrary.html +70 -0
- data/redis/redis-2.2.11/doc/RedisGuides.html +37 -0
- data/redis/redis-2.2.11/doc/RedisInternals.html +38 -0
- data/redis/redis-2.2.11/doc/RedisPipelining.html +93 -0
- data/redis/redis-2.2.11/doc/RedisStatus.html +56 -0
- data/redis/redis-2.2.11/doc/Redis_1_2_0_Changelog.html +40 -0
- data/redis/redis-2.2.11/doc/Redis_2_0_0_Changelog.html +62 -0
- data/redis/redis-2.2.11/doc/Redis_2_0_Whats_new.html +59 -0
- data/redis/redis-2.2.11/doc/RenameCommand.html +39 -0
- data/redis/redis-2.2.11/doc/RenamenxCommand.html +42 -0
- data/redis/redis-2.2.11/doc/ReplicationHowto.html +43 -0
- data/redis/redis-2.2.11/doc/ReplyTypes.html +42 -0
- data/redis/redis-2.2.11/doc/RoadMap.html +38 -0
- data/redis/redis-2.2.11/doc/RpoplpushCommand.html +44 -0
- data/redis/redis-2.2.11/doc/RpushCommand.html +40 -0
- data/redis/redis-2.2.11/doc/SaddCommand.html +41 -0
- data/redis/redis-2.2.11/doc/SaveCommand.html +39 -0
- data/redis/redis-2.2.11/doc/ScardCommand.html +41 -0
- data/redis/redis-2.2.11/doc/SdiffCommand.html +45 -0
- data/redis/redis-2.2.11/doc/SdiffstoreCommand.html +38 -0
- data/redis/redis-2.2.11/doc/SelectCommand.html +39 -0
- data/redis/redis-2.2.11/doc/SetCommand.html +39 -0
- data/redis/redis-2.2.11/doc/SetCommandsSidebar.html +36 -0
- data/redis/redis-2.2.11/doc/SetbitCommand.html +45 -0
- data/redis/redis-2.2.11/doc/SetexCommand.html +42 -0
- data/redis/redis-2.2.11/doc/SetnxCommand.html +51 -0
- data/redis/redis-2.2.11/doc/SetrangeCommand.html +58 -0
- data/redis/redis-2.2.11/doc/Sets.html +36 -0
- data/redis/redis-2.2.11/doc/ShutdownCommand.html +39 -0
- data/redis/redis-2.2.11/doc/SideBar.html +36 -0
- data/redis/redis-2.2.11/doc/SinterCommand.html +40 -0
- data/redis/redis-2.2.11/doc/SinterstoreCommand.html +39 -0
- data/redis/redis-2.2.11/doc/SismemberCommand.html +42 -0
- data/redis/redis-2.2.11/doc/SlaveofCommand.html +41 -0
- data/redis/redis-2.2.11/doc/SmembersCommand.html +38 -0
- data/redis/redis-2.2.11/doc/SmoveCommand.html +44 -0
- data/redis/redis-2.2.11/doc/SortCommand.html +75 -0
- data/redis/redis-2.2.11/doc/SortedSetCommandsSidebar.html +36 -0
- data/redis/redis-2.2.11/doc/SortedSets.html +36 -0
- data/redis/redis-2.2.11/doc/Speed.html +38 -0
- data/redis/redis-2.2.11/doc/SponsorshipHistory.html +38 -0
- data/redis/redis-2.2.11/doc/SpopCommand.html +40 -0
- data/redis/redis-2.2.11/doc/SrandmemberCommand.html +40 -0
- data/redis/redis-2.2.11/doc/SremCommand.html +42 -0
- data/redis/redis-2.2.11/doc/StringCommandsSidebar.html +36 -0
- data/redis/redis-2.2.11/doc/Strings.html +37 -0
- data/redis/redis-2.2.11/doc/StrlenCommand.html +39 -0
- data/redis/redis-2.2.11/doc/SubstrCommand.html +52 -0
- data/redis/redis-2.2.11/doc/SunionCommand.html +40 -0
- data/redis/redis-2.2.11/doc/SunionstoreCommand.html +38 -0
- data/redis/redis-2.2.11/doc/SupportedLanguages.html +60 -0
- data/redis/redis-2.2.11/doc/SupportedPlatforms.html +37 -0
- data/redis/redis-2.2.11/doc/TemplateCommand.html +38 -0
- data/redis/redis-2.2.11/doc/TtlCommand.html +38 -0
- data/redis/redis-2.2.11/doc/TwitterAlikeExample.html +250 -0
- data/redis/redis-2.2.11/doc/TypeCommand.html +46 -0
- data/redis/redis-2.2.11/doc/UnstableSource.html +39 -0
- data/redis/redis-2.2.11/doc/VirtualMemorySpecification.html +156 -0
- data/redis/redis-2.2.11/doc/VirtualMemoryUserGuide.html +66 -0
- data/redis/redis-2.2.11/doc/ZaddCommand.html +43 -0
- data/redis/redis-2.2.11/doc/ZcardCommand.html +41 -0
- data/redis/redis-2.2.11/doc/ZincrbyCommand.html +42 -0
- data/redis/redis-2.2.11/doc/ZrangeCommand.html +42 -0
- data/redis/redis-2.2.11/doc/ZrangebyscoreCommand.html +77 -0
- data/redis/redis-2.2.11/doc/ZrankCommand.html +43 -0
- data/redis/redis-2.2.11/doc/ZremCommand.html +42 -0
- data/redis/redis-2.2.11/doc/ZremrangebyrankCommand.html +39 -0
- data/redis/redis-2.2.11/doc/ZremrangebyscoreCommand.html +39 -0
- data/redis/redis-2.2.11/doc/ZscoreCommand.html +41 -0
- data/redis/redis-2.2.11/doc/ZunionCommand.html +42 -0
- data/redis/redis-2.2.11/doc/ZunionstoreCommand.html +43 -0
- data/redis/redis-2.2.11/doc/index.html +43 -0
- data/redis/redis-2.2.11/doc/redis.png +0 -0
- data/redis/redis-2.2.11/doc/style.css +25 -0
- data/redis/redis-2.2.11/redis.conf +417 -0
- data/redis/redis-2.2.11/src/Makefile +177 -0
- data/redis/redis-2.2.11/src/adlist.c +325 -0
- data/redis/redis-2.2.11/src/adlist.h +92 -0
- data/redis/redis-2.2.11/src/ae.c +390 -0
- data/redis/redis-2.2.11/src/ae.h +117 -0
- data/redis/redis-2.2.11/src/ae_epoll.c +91 -0
- data/redis/redis-2.2.11/src/ae_kqueue.c +93 -0
- data/redis/redis-2.2.11/src/ae_select.c +72 -0
- data/redis/redis-2.2.11/src/anet.c +347 -0
- data/redis/redis-2.2.11/src/anet.h +57 -0
- data/redis/redis-2.2.11/src/aof.c +675 -0
- data/redis/redis-2.2.11/src/config.c +627 -0
- data/redis/redis-2.2.11/src/config.h +64 -0
- data/redis/redis-2.2.11/src/db.c +543 -0
- data/redis/redis-2.2.11/src/debug.c +314 -0
- data/redis/redis-2.2.11/src/dict.c +721 -0
- data/redis/redis-2.2.11/src/dict.h +156 -0
- data/redis/redis-2.2.11/src/fmacros.h +15 -0
- data/redis/redis-2.2.11/src/help.h +638 -0
- data/redis/redis-2.2.11/src/intset.c +422 -0
- data/redis/redis-2.2.11/src/intset.h +19 -0
- data/redis/redis-2.2.11/src/lzf.h +100 -0
- data/redis/redis-2.2.11/src/lzfP.h +159 -0
- data/redis/redis-2.2.11/src/lzf_c.c +295 -0
- data/redis/redis-2.2.11/src/lzf_d.c +150 -0
- data/redis/redis-2.2.11/src/mkreleasehdr.sh +9 -0
- data/redis/redis-2.2.11/src/multi.c +268 -0
- data/redis/redis-2.2.11/src/networking.c +899 -0
- data/redis/redis-2.2.11/src/object.c +484 -0
- data/redis/redis-2.2.11/src/pqsort.c +197 -0
- data/redis/redis-2.2.11/src/pqsort.h +15 -0
- data/redis/redis-2.2.11/src/pubsub.c +267 -0
- data/redis/redis-2.2.11/src/rdb.c +1020 -0
- data/redis/redis-2.2.11/src/redis-benchmark.c +530 -0
- data/redis/redis-2.2.11/src/redis-check-aof.c +185 -0
- data/redis/redis-2.2.11/src/redis-check-dump.c +681 -0
- data/redis/redis-2.2.11/src/redis-cli.c +773 -0
- data/redis/redis-2.2.11/src/redis.c +1677 -0
- data/redis/redis-2.2.11/src/redis.h +1022 -0
- data/redis/redis-2.2.11/src/release.c +13 -0
- data/redis/redis-2.2.11/src/replication.c +557 -0
- data/redis/redis-2.2.11/src/sds.c +639 -0
- data/redis/redis-2.2.11/src/sds.h +78 -0
- data/redis/redis-2.2.11/src/sha1.c +276 -0
- data/redis/redis-2.2.11/src/sha1.h +17 -0
- data/redis/redis-2.2.11/src/solarisfixes.h +22 -0
- data/redis/redis-2.2.11/src/sort.c +389 -0
- data/redis/redis-2.2.11/src/syncio.c +154 -0
- data/redis/redis-2.2.11/src/t_hash.c +476 -0
- data/redis/redis-2.2.11/src/t_list.c +986 -0
- data/redis/redis-2.2.11/src/t_set.c +610 -0
- data/redis/redis-2.2.11/src/t_string.c +438 -0
- data/redis/redis-2.2.11/src/t_zset.c +1084 -0
- data/redis/redis-2.2.11/src/testhelp.h +54 -0
- data/redis/redis-2.2.11/src/util.c +243 -0
- data/redis/redis-2.2.11/src/valgrind.sup +5 -0
- data/redis/redis-2.2.11/src/version.h +1 -0
- data/redis/redis-2.2.11/src/vm.c +1149 -0
- data/redis/redis-2.2.11/src/ziplist.c +1323 -0
- data/redis/redis-2.2.11/src/ziplist.h +15 -0
- data/redis/redis-2.2.11/src/zipmap.c +455 -0
- data/redis/redis-2.2.11/src/zipmap.h +48 -0
- data/redis/redis-2.2.11/src/zmalloc.c +278 -0
- data/redis/redis-2.2.11/src/zmalloc.h +47 -0
- data/redis/redis-2.2.11/tests/assets/default.conf +308 -0
- data/redis/redis-2.2.11/tests/integration/aof.tcl +104 -0
- data/redis/redis-2.2.11/tests/integration/redis-cli.tcl +208 -0
- data/redis/redis-2.2.11/tests/integration/replication.tcl +98 -0
- data/redis/redis-2.2.11/tests/support/redis.tcl +241 -0
- data/redis/redis-2.2.11/tests/support/server.tcl +294 -0
- data/redis/redis-2.2.11/tests/support/test.tcl +190 -0
- data/redis/redis-2.2.11/tests/support/tmpfile.tcl +15 -0
- data/redis/redis-2.2.11/tests/support/util.tcl +296 -0
- data/redis/redis-2.2.11/tests/test_helper.tcl +221 -0
- data/redis/redis-2.2.11/tests/unit/auth.tcl +15 -0
- data/redis/redis-2.2.11/tests/unit/basic.tcl +616 -0
- data/redis/redis-2.2.11/tests/unit/cas.tcl +135 -0
- data/redis/redis-2.2.11/tests/unit/expire.tcl +74 -0
- data/redis/redis-2.2.11/tests/unit/other.tcl +240 -0
- data/redis/redis-2.2.11/tests/unit/printver.tcl +6 -0
- data/redis/redis-2.2.11/tests/unit/protocol.tcl +62 -0
- data/redis/redis-2.2.11/tests/unit/pubsub.tcl +195 -0
- data/redis/redis-2.2.11/tests/unit/quit.tcl +40 -0
- data/redis/redis-2.2.11/tests/unit/sort.tcl +189 -0
- data/redis/redis-2.2.11/tests/unit/type/hash.tcl +300 -0
- data/redis/redis-2.2.11/tests/unit/type/list.tcl +819 -0
- data/redis/redis-2.2.11/tests/unit/type/set.tcl +334 -0
- data/redis/redis-2.2.11/tests/unit/type/zset.tcl +587 -0
- data/redis/redis-2.2.11/utils/build-static-symbols.tcl +22 -0
- data/redis/redis-2.2.11/utils/generate-command-help.rb +112 -0
- data/redis/redis-2.2.11/utils/mktarball.sh +13 -0
- data/redis/redis-2.2.11/utils/redis-copy.rb +78 -0
- data/redis/redis-2.2.11/utils/redis-sha1.rb +52 -0
- data/redis/redis-2.2.11/utils/redis_init_script +42 -0
- metadata +362 -0
@@ -0,0 +1,22 @@
|
|
1
|
+
# Build a symbol table for static symbols of redis.c
|
2
|
+
# Useful to get stack traces on segfault without a debugger. See redis.c
|
3
|
+
# for more information.
|
4
|
+
#
|
5
|
+
# Copyright(C) 2009 Salvatore Sanfilippo, under the BSD license.
|
6
|
+
|
7
|
+
set fd [open redis.c]
|
8
|
+
set symlist {}
|
9
|
+
while {[gets $fd line] != -1} {
|
10
|
+
if {[regexp {^static +[A-z0-9]+[ *]+([A-z0-9]*)\(} $line - sym]} {
|
11
|
+
lappend symlist $sym
|
12
|
+
}
|
13
|
+
}
|
14
|
+
set symlist [lsort -unique $symlist]
|
15
|
+
puts "static struct redisFunctionSym symsTable\[\] = {"
|
16
|
+
foreach sym $symlist {
|
17
|
+
puts "{\"$sym\",(unsigned long)$sym},"
|
18
|
+
}
|
19
|
+
puts "{NULL,0}"
|
20
|
+
puts "};"
|
21
|
+
|
22
|
+
close $fd
|
@@ -0,0 +1,112 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
GROUPS = [
|
4
|
+
"generic",
|
5
|
+
"string",
|
6
|
+
"list",
|
7
|
+
"set",
|
8
|
+
"sorted_set",
|
9
|
+
"hash",
|
10
|
+
"pubsub",
|
11
|
+
"transactions",
|
12
|
+
"connection",
|
13
|
+
"server"
|
14
|
+
].freeze
|
15
|
+
|
16
|
+
GROUPS_BY_NAME = Hash[*
|
17
|
+
GROUPS.each_with_index.map do |n,i|
|
18
|
+
[n,i]
|
19
|
+
end.flatten
|
20
|
+
].freeze
|
21
|
+
|
22
|
+
def argument arg
|
23
|
+
name = arg["name"].is_a?(Array) ? arg["name"].join(" ") : arg["name"]
|
24
|
+
name = arg["enum"].join "|" if "enum" == arg["type"]
|
25
|
+
name = arg["command"] + " " + name if arg["command"]
|
26
|
+
if arg["multiple"]
|
27
|
+
name = "#{name} [#{name} ...]"
|
28
|
+
end
|
29
|
+
if arg["optional"]
|
30
|
+
name = "[#{name}]"
|
31
|
+
end
|
32
|
+
name
|
33
|
+
end
|
34
|
+
|
35
|
+
def arguments command
|
36
|
+
return "-" unless command["arguments"]
|
37
|
+
command["arguments"].map do |arg|
|
38
|
+
argument arg
|
39
|
+
end.join " "
|
40
|
+
end
|
41
|
+
|
42
|
+
def commands
|
43
|
+
return @commands if @commands
|
44
|
+
|
45
|
+
require "rubygems"
|
46
|
+
require "net/http"
|
47
|
+
require "net/https"
|
48
|
+
require "json"
|
49
|
+
require "uri"
|
50
|
+
|
51
|
+
url = URI.parse "https://github.com/antirez/redis-doc/raw/master/commands.json"
|
52
|
+
client = Net::HTTP.new url.host, url.port
|
53
|
+
client.use_ssl = true
|
54
|
+
response = client.get url.path
|
55
|
+
if response.is_a?(Net::HTTPSuccess)
|
56
|
+
@commands = JSON.parse(response.body)
|
57
|
+
else
|
58
|
+
response.error!
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
def generate_groups
|
63
|
+
GROUPS.map do |n|
|
64
|
+
"\"#{n}\""
|
65
|
+
end.join(",\n ");
|
66
|
+
end
|
67
|
+
|
68
|
+
def generate_commands
|
69
|
+
commands.to_a.sort do |x,y|
|
70
|
+
x[0] <=> y[0]
|
71
|
+
end.map do |key, command|
|
72
|
+
group = GROUPS_BY_NAME[command["group"]]
|
73
|
+
if group.nil?
|
74
|
+
STDERR.puts "Please update groups array in #{__FILE__}"
|
75
|
+
raise "Unknown group #{command["group"]}"
|
76
|
+
end
|
77
|
+
|
78
|
+
ret = <<-SPEC
|
79
|
+
{ "#{key}",
|
80
|
+
"#{arguments(command)}",
|
81
|
+
"#{command["summary"]}",
|
82
|
+
#{group},
|
83
|
+
"#{command["since"]}" }
|
84
|
+
SPEC
|
85
|
+
ret.strip
|
86
|
+
end.join(",\n ")
|
87
|
+
end
|
88
|
+
|
89
|
+
# Write to stdout
|
90
|
+
puts <<-HELP_H
|
91
|
+
/* Automatically generated by #{__FILE__}, do not edit. */
|
92
|
+
|
93
|
+
#ifndef __REDIS_HELP_H
|
94
|
+
#define __REDIS_HELP_H
|
95
|
+
|
96
|
+
static char *commandGroups[] = {
|
97
|
+
#{generate_groups}
|
98
|
+
};
|
99
|
+
|
100
|
+
struct commandHelp {
|
101
|
+
char *name;
|
102
|
+
char *params;
|
103
|
+
char *summary;
|
104
|
+
int group;
|
105
|
+
char *since;
|
106
|
+
} commandHelp[] = {
|
107
|
+
#{generate_commands}
|
108
|
+
};
|
109
|
+
|
110
|
+
#endif
|
111
|
+
HELP_H
|
112
|
+
|
@@ -0,0 +1,13 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
|
3
|
+
if [ "$1" = "" ]
|
4
|
+
then
|
5
|
+
echo "Usage: mktarball.sh <git tag, branch or commit>"
|
6
|
+
echo "Example: mktarball.sh 2.2-rc4"
|
7
|
+
exit 1
|
8
|
+
fi
|
9
|
+
|
10
|
+
PREFIX="redis-${1}/"
|
11
|
+
TARBALL="/tmp/redis-${1}.tar.gz"
|
12
|
+
git archive --format=tar --prefix=$PREFIX $1 | gzip -c > $TARBALL
|
13
|
+
echo "File created: $TARBALL"
|
@@ -0,0 +1,78 @@
|
|
1
|
+
# redis-copy.rb - Copyright (C) 2009-2010 Salvatore Sanfilippo
|
2
|
+
# BSD license, See the COPYING file for more information.
|
3
|
+
#
|
4
|
+
# Copy the whole dataset from one Redis instance to another one
|
5
|
+
#
|
6
|
+
# WARNING: currently hashes and sorted sets are not supported! This
|
7
|
+
# program should be updated.
|
8
|
+
|
9
|
+
require 'rubygems'
|
10
|
+
require 'redis'
|
11
|
+
require 'digest/sha1'
|
12
|
+
|
13
|
+
def redisCopy(opts={})
|
14
|
+
sha1=""
|
15
|
+
src = Redis.new(:host => opts[:srchost], :port => opts[:srcport])
|
16
|
+
dst = Redis.new(:host => opts[:dsthost], :port => opts[:dstport])
|
17
|
+
puts "Loading key names..."
|
18
|
+
keys = src.keys('*')
|
19
|
+
puts "Copying #{keys.length} keys..."
|
20
|
+
c = 0
|
21
|
+
keys.each{|k|
|
22
|
+
vtype = src.type?(k)
|
23
|
+
ttl = src.ttl(k).to_i if vtype != "none"
|
24
|
+
|
25
|
+
if vtype == "string"
|
26
|
+
dst[k] = src[k]
|
27
|
+
elsif vtype == "list"
|
28
|
+
list = src.lrange(k,0,-1)
|
29
|
+
if list.length == 0
|
30
|
+
# Empty list special case
|
31
|
+
dst.lpush(k,"")
|
32
|
+
dst.lpop(k)
|
33
|
+
else
|
34
|
+
list.each{|ele|
|
35
|
+
dst.rpush(k,ele)
|
36
|
+
}
|
37
|
+
end
|
38
|
+
elsif vtype == "set"
|
39
|
+
set = src.smembers(k)
|
40
|
+
if set.length == 0
|
41
|
+
# Empty set special case
|
42
|
+
dst.sadd(k,"")
|
43
|
+
dst.srem(k,"")
|
44
|
+
else
|
45
|
+
set.each{|ele|
|
46
|
+
dst.sadd(k,ele)
|
47
|
+
}
|
48
|
+
end
|
49
|
+
elsif vtype == "none"
|
50
|
+
puts "WARNING: key '#{k}' was removed in the meanwhile."
|
51
|
+
end
|
52
|
+
|
53
|
+
# Handle keys with an expire time set
|
54
|
+
if ttl != -1 and vtype != "none"
|
55
|
+
dst.expire(k,ttl)
|
56
|
+
end
|
57
|
+
|
58
|
+
c = c+1
|
59
|
+
if (c % 1000) == 0
|
60
|
+
puts "#{c}/#{keys.length} completed"
|
61
|
+
end
|
62
|
+
}
|
63
|
+
puts "DONE!"
|
64
|
+
end
|
65
|
+
|
66
|
+
if ARGV.length != 4
|
67
|
+
puts "Usage: redis-copy.rb <srchost> <srcport> <dsthost> <dstport>"
|
68
|
+
exit 1
|
69
|
+
end
|
70
|
+
puts "WARNING: it's up to you to FLUSHDB the destination host before to continue, press any key when ready."
|
71
|
+
STDIN.gets
|
72
|
+
srchost = ARGV[0]
|
73
|
+
srcport = ARGV[1]
|
74
|
+
dsthost = ARGV[2]
|
75
|
+
dstport = ARGV[3]
|
76
|
+
puts "Copying #{srchost}:#{srcport} into #{dsthost}:#{dstport}"
|
77
|
+
redisCopy(:srchost => srchost, :srcport => srcport.to_i,
|
78
|
+
:dsthost => dsthost, :dstport => dstport.to_i)
|
@@ -0,0 +1,52 @@
|
|
1
|
+
# redis-sha1.rb - Copyright (C) 2009 Salvatore Sanfilippo
|
2
|
+
# BSD license, See the COPYING file for more information.
|
3
|
+
#
|
4
|
+
# Performs the SHA1 sum of the whole datset.
|
5
|
+
# This is useful to spot bugs in persistence related code and to make sure
|
6
|
+
# Slaves and Masters are in SYNC.
|
7
|
+
#
|
8
|
+
# If you hack this code make sure to sort keys and set elements as this are
|
9
|
+
# unsorted elements. Otherwise the sum may differ with equal dataset.
|
10
|
+
|
11
|
+
require 'rubygems'
|
12
|
+
require 'redis'
|
13
|
+
require 'digest/sha1'
|
14
|
+
|
15
|
+
def redisSha1(opts={})
|
16
|
+
sha1=""
|
17
|
+
r = Redis.new(opts)
|
18
|
+
r.keys('*').sort.each{|k|
|
19
|
+
vtype = r.type?(k)
|
20
|
+
if vtype == "string"
|
21
|
+
len = 1
|
22
|
+
sha1 = Digest::SHA1.hexdigest(sha1+k)
|
23
|
+
sha1 = Digest::SHA1.hexdigest(sha1+r.get(k))
|
24
|
+
elsif vtype == "list"
|
25
|
+
len = r.llen(k)
|
26
|
+
if len != 0
|
27
|
+
sha1 = Digest::SHA1.hexdigest(sha1+k)
|
28
|
+
sha1 = Digest::SHA1.hexdigest(sha1+r.list_range(k,0,-1).join("\x01"))
|
29
|
+
end
|
30
|
+
elsif vtype == "set"
|
31
|
+
len = r.scard(k)
|
32
|
+
if len != 0
|
33
|
+
sha1 = Digest::SHA1.hexdigest(sha1+k)
|
34
|
+
sha1 = Digest::SHA1.hexdigest(sha1+r.set_members(k).to_a.sort.join("\x02"))
|
35
|
+
end
|
36
|
+
elsif vtype == "zset"
|
37
|
+
len = r.zcard(k)
|
38
|
+
if len != 0
|
39
|
+
sha1 = Digest::SHA1.hexdigest(sha1+k)
|
40
|
+
sha1 = Digest::SHA1.hexdigest(sha1+r.zrange(k,0,-1).join("\x01"))
|
41
|
+
end
|
42
|
+
end
|
43
|
+
# puts "#{k} => #{sha1}" if len != 0
|
44
|
+
}
|
45
|
+
sha1
|
46
|
+
end
|
47
|
+
|
48
|
+
host = ARGV[0] || "127.0.0.1"
|
49
|
+
port = ARGV[1] || "6379"
|
50
|
+
db = ARGV[2] || "0"
|
51
|
+
puts "Performing SHA1 of Redis server #{host} #{port} DB: #{db}"
|
52
|
+
p "Dataset SHA1: #{redisSha1(:host => host, :port => port.to_i, :db => db)}"
|
@@ -0,0 +1,42 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
#
|
3
|
+
# Simple Redis init.d script conceived to work on Linux systems
|
4
|
+
# as it does use of the /proc filesystem.
|
5
|
+
|
6
|
+
REDISPORT=6379
|
7
|
+
EXEC=/usr/local/bin/redis-server
|
8
|
+
CLIEXEC=/usr/local/bin/redis-cli
|
9
|
+
|
10
|
+
PIDFILE=/var/run/redis_${REDISPORT}.pid
|
11
|
+
CONF="/etc/redis/${REDISPORT}.conf"
|
12
|
+
|
13
|
+
case "$1" in
|
14
|
+
start)
|
15
|
+
if [ -f $PIDFILE ]
|
16
|
+
then
|
17
|
+
echo "$PIDFILE exists, process is already running or crashed"
|
18
|
+
else
|
19
|
+
echo "Starting Redis server..."
|
20
|
+
$EXEC $CONF
|
21
|
+
fi
|
22
|
+
;;
|
23
|
+
stop)
|
24
|
+
if [ ! -f $PIDFILE ]
|
25
|
+
then
|
26
|
+
echo "$PIDFILE does not exist, process is not running"
|
27
|
+
else
|
28
|
+
PID=$(cat $PIDFILE)
|
29
|
+
echo "Stopping ..."
|
30
|
+
$CLIEXEC -p $REDISPORT shutdown
|
31
|
+
while [ -x /proc/${PID} ]
|
32
|
+
do
|
33
|
+
echo "Waiting for Redis to shutdown ..."
|
34
|
+
sleep 1
|
35
|
+
done
|
36
|
+
echo "Redis stopped"
|
37
|
+
fi
|
38
|
+
;;
|
39
|
+
*)
|
40
|
+
echo "Please use start or stop as first argument"
|
41
|
+
;;
|
42
|
+
esac
|
metadata
ADDED
@@ -0,0 +1,362 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: redis-server
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Simon Russell
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2011-07-10 00:00:00.000000000 +10:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: clamp
|
17
|
+
requirement: &12858220 !ruby/object:Gem::Requirement
|
18
|
+
none: false
|
19
|
+
requirements:
|
20
|
+
- - ~>
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 0.2.1
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: *12858220
|
26
|
+
- !ruby/object:Gem::Dependency
|
27
|
+
name: daemon_controller
|
28
|
+
requirement: &12857760 !ruby/object:Gem::Requirement
|
29
|
+
none: false
|
30
|
+
requirements:
|
31
|
+
- - ~>
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 0.2.6
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: *12857760
|
37
|
+
description: ! ' Gem to install the redis server; makes things
|
38
|
+
easy.
|
39
|
+
|
40
|
+
'
|
41
|
+
email: spam+redis-server@bellyphant.com
|
42
|
+
executables:
|
43
|
+
- redis
|
44
|
+
extensions:
|
45
|
+
- redis/extconf.rb
|
46
|
+
extra_rdoc_files: []
|
47
|
+
files:
|
48
|
+
- bin/redis
|
49
|
+
- redis/redis-2.2.11/BUGS
|
50
|
+
- redis/redis-2.2.11/README
|
51
|
+
- redis/redis-2.2.11/client-libraries/README
|
52
|
+
- redis/redis-2.2.11/Changelog
|
53
|
+
- redis/redis-2.2.11/redis.conf
|
54
|
+
- redis/redis-2.2.11/TODO
|
55
|
+
- redis/redis-2.2.11/INSTALL
|
56
|
+
- redis/redis-2.2.11/Makefile
|
57
|
+
- redis/redis-2.2.11/doc/HincrbyCommand.html
|
58
|
+
- redis/redis-2.2.11/doc/BgsaveCommand.html
|
59
|
+
- redis/redis-2.2.11/doc/Features.html
|
60
|
+
- redis/redis-2.2.11/doc/Comparisons.html
|
61
|
+
- redis/redis-2.2.11/doc/SubstrCommand.html
|
62
|
+
- redis/redis-2.2.11/doc/Redis_2_0_0_Changelog.html
|
63
|
+
- redis/redis-2.2.11/doc/RedisPipelining.html
|
64
|
+
- redis/redis-2.2.11/doc/MonitorCommand.html
|
65
|
+
- redis/redis-2.2.11/doc/LlenCommand.html
|
66
|
+
- redis/redis-2.2.11/doc/ZunionstoreCommand.html
|
67
|
+
- redis/redis-2.2.11/doc/SremCommand.html
|
68
|
+
- redis/redis-2.2.11/doc/ZscoreCommand.html
|
69
|
+
- redis/redis-2.2.11/doc/GenericCommandsSidebar.html
|
70
|
+
- redis/redis-2.2.11/doc/CommandReference.html
|
71
|
+
- redis/redis-2.2.11/doc/ZrangebyscoreCommand.html
|
72
|
+
- redis/redis-2.2.11/doc/InfoCommand.html
|
73
|
+
- redis/redis-2.2.11/doc/index.html
|
74
|
+
- redis/redis-2.2.11/doc/VirtualMemoryUserGuide.html
|
75
|
+
- redis/redis-2.2.11/doc/LastsaveCommand.html
|
76
|
+
- redis/redis-2.2.11/doc/Redis0100ChangeLog.html
|
77
|
+
- redis/redis-2.2.11/doc/ZcardCommand.html
|
78
|
+
- redis/redis-2.2.11/doc/FlushdbCommand.html
|
79
|
+
- redis/redis-2.2.11/doc/LpopCommand.html
|
80
|
+
- redis/redis-2.2.11/doc/ScardCommand.html
|
81
|
+
- redis/redis-2.2.11/doc/ZremrangebyrankCommand.html
|
82
|
+
- redis/redis-2.2.11/doc/Credits.html
|
83
|
+
- redis/redis-2.2.11/doc/ListCommandsSidebar.html
|
84
|
+
- redis/redis-2.2.11/doc/SetrangeCommand.html
|
85
|
+
- redis/redis-2.2.11/doc/RoadMap.html
|
86
|
+
- redis/redis-2.2.11/doc/GetCommand.html
|
87
|
+
- redis/redis-2.2.11/doc/AppendCommand.html
|
88
|
+
- redis/redis-2.2.11/doc/RandomkeyCommand.html
|
89
|
+
- redis/redis-2.2.11/doc/HmgetCommand.html
|
90
|
+
- redis/redis-2.2.11/doc/MultiExecCommand.html
|
91
|
+
- redis/redis-2.2.11/doc/Speed.html
|
92
|
+
- redis/redis-2.2.11/doc/QuickStart.html
|
93
|
+
- redis/redis-2.2.11/doc/RpushCommand.html
|
94
|
+
- redis/redis-2.2.11/doc/SupportedPlatforms.html
|
95
|
+
- redis/redis-2.2.11/doc/TypeCommand.html
|
96
|
+
- redis/redis-2.2.11/doc/ConnectionHandlingSidebar.html
|
97
|
+
- redis/redis-2.2.11/doc/MoveCommand.html
|
98
|
+
- redis/redis-2.2.11/doc/DesignPatterns.html
|
99
|
+
- redis/redis-2.2.11/doc/SaddCommand.html
|
100
|
+
- redis/redis-2.2.11/doc/HsetCommand.html
|
101
|
+
- redis/redis-2.2.11/doc/SaveCommand.html
|
102
|
+
- redis/redis-2.2.11/doc/Benchmarks.html
|
103
|
+
- redis/redis-2.2.11/doc/RpoplpushCommand.html
|
104
|
+
- redis/redis-2.2.11/doc/DbsizeCommand.html
|
105
|
+
- redis/redis-2.2.11/doc/LtrimCommand.html
|
106
|
+
- redis/redis-2.2.11/doc/FAQ.html
|
107
|
+
- redis/redis-2.2.11/doc/Configuration.html
|
108
|
+
- redis/redis-2.2.11/doc/SmembersCommand.html
|
109
|
+
- redis/redis-2.2.11/doc/FlushallCommand.html
|
110
|
+
- redis/redis-2.2.11/doc/RedisGuides.html
|
111
|
+
- redis/redis-2.2.11/doc/SetCommand.html
|
112
|
+
- redis/redis-2.2.11/doc/HgetallCommand.html
|
113
|
+
- redis/redis-2.2.11/doc/LrangeCommand.html
|
114
|
+
- redis/redis-2.2.11/doc/LsetCommand.html
|
115
|
+
- redis/redis-2.2.11/doc/Pipelining.html
|
116
|
+
- redis/redis-2.2.11/doc/BgrewriteaofCommand.html
|
117
|
+
- redis/redis-2.2.11/doc/HackingStrings.html
|
118
|
+
- redis/redis-2.2.11/doc/SlaveofCommand.html
|
119
|
+
- redis/redis-2.2.11/doc/PublishSubscribe.html
|
120
|
+
- redis/redis-2.2.11/doc/DelCommand.html
|
121
|
+
- redis/redis-2.2.11/doc/HdelCommand.html
|
122
|
+
- redis/redis-2.2.11/doc/MgetCommand.html
|
123
|
+
- redis/redis-2.2.11/doc/KeysCommand.html
|
124
|
+
- redis/redis-2.2.11/doc/ZrangeCommand.html
|
125
|
+
- redis/redis-2.2.11/doc/SrandmemberCommand.html
|
126
|
+
- redis/redis-2.2.11/doc/SupportedLanguages.html
|
127
|
+
- redis/redis-2.2.11/doc/style.css
|
128
|
+
- redis/redis-2.2.11/doc/Sets.html
|
129
|
+
- redis/redis-2.2.11/doc/StrlenCommand.html
|
130
|
+
- redis/redis-2.2.11/doc/Redis_1_2_0_Changelog.html
|
131
|
+
- redis/redis-2.2.11/doc/SdiffCommand.html
|
132
|
+
- redis/redis-2.2.11/doc/HexistsCommand.html
|
133
|
+
- redis/redis-2.2.11/doc/BlpopCommand.html
|
134
|
+
- redis/redis-2.2.11/doc/ProgrammingExamples.html
|
135
|
+
- redis/redis-2.2.11/doc/RedisBigData.html
|
136
|
+
- redis/redis-2.2.11/doc/IncrCommand.html
|
137
|
+
- redis/redis-2.2.11/doc/UnstableSource.html
|
138
|
+
- redis/redis-2.2.11/doc/HgetCommand.html
|
139
|
+
- redis/redis-2.2.11/doc/VirtualMemorySpecification.html
|
140
|
+
- redis/redis-2.2.11/doc/SortedSetCommandsSidebar.html
|
141
|
+
- redis/redis-2.2.11/doc/SponsorshipHistory.html
|
142
|
+
- redis/redis-2.2.11/doc/EventLibray.html
|
143
|
+
- redis/redis-2.2.11/doc/AuthCommand.html
|
144
|
+
- redis/redis-2.2.11/doc/ControlCommandsSidebar.html
|
145
|
+
- redis/redis-2.2.11/doc/RedisStatus.html
|
146
|
+
- redis/redis-2.2.11/doc/Hashes.html
|
147
|
+
- redis/redis-2.2.11/doc/ZincrbyCommand.html
|
148
|
+
- redis/redis-2.2.11/doc/SetCommandsSidebar.html
|
149
|
+
- redis/redis-2.2.11/doc/HmsetCommand.html
|
150
|
+
- redis/redis-2.2.11/doc/redis.png
|
151
|
+
- redis/redis-2.2.11/doc/SelectCommand.html
|
152
|
+
- redis/redis-2.2.11/doc/SinterstoreCommand.html
|
153
|
+
- redis/redis-2.2.11/doc/HlenCommand.html
|
154
|
+
- redis/redis-2.2.11/doc/IntroductionToRedisDataTypes.html
|
155
|
+
- redis/redis-2.2.11/doc/MsetCommand.html
|
156
|
+
- redis/redis-2.2.11/doc/GetsetCommand.html
|
157
|
+
- redis/redis-2.2.11/doc/ReplyTypes.html
|
158
|
+
- redis/redis-2.2.11/doc/ProtocolSpecification.html
|
159
|
+
- redis/redis-2.2.11/doc/NonexistentCommands.html
|
160
|
+
- redis/redis-2.2.11/doc/RedisInternals.html
|
161
|
+
- redis/redis-2.2.11/doc/SdiffstoreCommand.html
|
162
|
+
- redis/redis-2.2.11/doc/TemplateCommand.html
|
163
|
+
- redis/redis-2.2.11/doc/Redis_2_0_Whats_new.html
|
164
|
+
- redis/redis-2.2.11/doc/Redis0900ChangeLog.html
|
165
|
+
- redis/redis-2.2.11/doc/SinterCommand.html
|
166
|
+
- redis/redis-2.2.11/doc/HashCommandsSidebar.html
|
167
|
+
- redis/redis-2.2.11/doc/QuitCommand.html
|
168
|
+
- redis/redis-2.2.11/doc/LremCommand.html
|
169
|
+
- redis/redis-2.2.11/doc/ExpireCommand.html
|
170
|
+
- redis/redis-2.2.11/doc/ExistsCommand.html
|
171
|
+
- redis/redis-2.2.11/doc/SunionstoreCommand.html
|
172
|
+
- redis/redis-2.2.11/doc/Lists.html
|
173
|
+
- redis/redis-2.2.11/doc/RenamenxCommand.html
|
174
|
+
- redis/redis-2.2.11/doc/HsetnxCommand.html
|
175
|
+
- redis/redis-2.2.11/doc/SpopCommand.html
|
176
|
+
- redis/redis-2.2.11/doc/ZremCommand.html
|
177
|
+
- redis/redis-2.2.11/doc/ConfigCommand.html
|
178
|
+
- redis/redis-2.2.11/doc/SetbitCommand.html
|
179
|
+
- redis/redis-2.2.11/doc/ZaddCommand.html
|
180
|
+
- redis/redis-2.2.11/doc/StringCommandsSidebar.html
|
181
|
+
- redis/redis-2.2.11/doc/ZremrangebyscoreCommand.html
|
182
|
+
- redis/redis-2.2.11/doc/BrpoplpushCommand.html
|
183
|
+
- redis/redis-2.2.11/doc/TtlCommand.html
|
184
|
+
- redis/redis-2.2.11/doc/SismemberCommand.html
|
185
|
+
- redis/redis-2.2.11/doc/TwitterAlikeExample.html
|
186
|
+
- redis/redis-2.2.11/doc/SetexCommand.html
|
187
|
+
- redis/redis-2.2.11/doc/SunionCommand.html
|
188
|
+
- redis/redis-2.2.11/doc/README.html
|
189
|
+
- redis/redis-2.2.11/doc/SmoveCommand.html
|
190
|
+
- redis/redis-2.2.11/doc/ZrankCommand.html
|
191
|
+
- redis/redis-2.2.11/doc/ReplicationHowto.html
|
192
|
+
- redis/redis-2.2.11/doc/Strings.html
|
193
|
+
- redis/redis-2.2.11/doc/RenameCommand.html
|
194
|
+
- redis/redis-2.2.11/doc/LindexCommand.html
|
195
|
+
- redis/redis-2.2.11/doc/SortedSets.html
|
196
|
+
- redis/redis-2.2.11/doc/RedisEventLibrary.html
|
197
|
+
- redis/redis-2.2.11/doc/AppendOnlyFileHowto.html
|
198
|
+
- redis/redis-2.2.11/doc/SortCommand.html
|
199
|
+
- redis/redis-2.2.11/doc/ObjectHashMappers.html
|
200
|
+
- redis/redis-2.2.11/doc/ShutdownCommand.html
|
201
|
+
- redis/redis-2.2.11/doc/GetbitCommand.html
|
202
|
+
- redis/redis-2.2.11/doc/SetnxCommand.html
|
203
|
+
- redis/redis-2.2.11/doc/SideBar.html
|
204
|
+
- redis/redis-2.2.11/doc/RedisCLI.html
|
205
|
+
- redis/redis-2.2.11/doc/FromSqlToDataStructures.html
|
206
|
+
- redis/redis-2.2.11/doc/ZunionCommand.html
|
207
|
+
- redis/redis-2.2.11/tests/test_helper.tcl
|
208
|
+
- redis/redis-2.2.11/tests/support/test.tcl
|
209
|
+
- redis/redis-2.2.11/tests/support/util.tcl
|
210
|
+
- redis/redis-2.2.11/tests/support/redis.tcl
|
211
|
+
- redis/redis-2.2.11/tests/support/tmpfile.tcl
|
212
|
+
- redis/redis-2.2.11/tests/support/server.tcl
|
213
|
+
- redis/redis-2.2.11/tests/unit/pubsub.tcl
|
214
|
+
- redis/redis-2.2.11/tests/unit/printver.tcl
|
215
|
+
- redis/redis-2.2.11/tests/unit/basic.tcl
|
216
|
+
- redis/redis-2.2.11/tests/unit/other.tcl
|
217
|
+
- redis/redis-2.2.11/tests/unit/quit.tcl
|
218
|
+
- redis/redis-2.2.11/tests/unit/auth.tcl
|
219
|
+
- redis/redis-2.2.11/tests/unit/cas.tcl
|
220
|
+
- redis/redis-2.2.11/tests/unit/protocol.tcl
|
221
|
+
- redis/redis-2.2.11/tests/unit/sort.tcl
|
222
|
+
- redis/redis-2.2.11/tests/unit/type/set.tcl
|
223
|
+
- redis/redis-2.2.11/tests/unit/type/hash.tcl
|
224
|
+
- redis/redis-2.2.11/tests/unit/type/list.tcl
|
225
|
+
- redis/redis-2.2.11/tests/unit/type/zset.tcl
|
226
|
+
- redis/redis-2.2.11/tests/unit/expire.tcl
|
227
|
+
- redis/redis-2.2.11/tests/integration/redis-cli.tcl
|
228
|
+
- redis/redis-2.2.11/tests/integration/replication.tcl
|
229
|
+
- redis/redis-2.2.11/tests/integration/aof.tcl
|
230
|
+
- redis/redis-2.2.11/tests/assets/default.conf
|
231
|
+
- redis/redis-2.2.11/CONTRIBUTING
|
232
|
+
- redis/redis-2.2.11/COPYING
|
233
|
+
- redis/redis-2.2.11/design-documents/REDIS-CLUSTER-2
|
234
|
+
- redis/redis-2.2.11/design-documents/REDIS-CLUSTER
|
235
|
+
- redis/redis-2.2.11/00-RELEASENOTES
|
236
|
+
- redis/redis-2.2.11/utils/mktarball.sh
|
237
|
+
- redis/redis-2.2.11/utils/generate-command-help.rb
|
238
|
+
- redis/redis-2.2.11/utils/redis-copy.rb
|
239
|
+
- redis/redis-2.2.11/utils/redis-sha1.rb
|
240
|
+
- redis/redis-2.2.11/utils/redis_init_script
|
241
|
+
- redis/redis-2.2.11/utils/build-static-symbols.tcl
|
242
|
+
- redis/redis-2.2.11/deps/linenoise/linenoise.h
|
243
|
+
- redis/redis-2.2.11/deps/linenoise/Makefile
|
244
|
+
- redis/redis-2.2.11/deps/linenoise/example.c
|
245
|
+
- redis/redis-2.2.11/deps/linenoise/README.markdown
|
246
|
+
- redis/redis-2.2.11/deps/linenoise/linenoise.c
|
247
|
+
- redis/redis-2.2.11/deps/hiredis/README.md
|
248
|
+
- redis/redis-2.2.11/deps/hiredis/hiredis.h
|
249
|
+
- redis/redis-2.2.11/deps/hiredis/sds.h
|
250
|
+
- redis/redis-2.2.11/deps/hiredis/net.c
|
251
|
+
- redis/redis-2.2.11/deps/hiredis/example-libev.c
|
252
|
+
- redis/redis-2.2.11/deps/hiredis/TODO
|
253
|
+
- redis/redis-2.2.11/deps/hiredis/util.h
|
254
|
+
- redis/redis-2.2.11/deps/hiredis/Makefile
|
255
|
+
- redis/redis-2.2.11/deps/hiredis/example-libevent.c
|
256
|
+
- redis/redis-2.2.11/deps/hiredis/example.c
|
257
|
+
- redis/redis-2.2.11/deps/hiredis/async.h
|
258
|
+
- redis/redis-2.2.11/deps/hiredis/COPYING
|
259
|
+
- redis/redis-2.2.11/deps/hiredis/async.c
|
260
|
+
- redis/redis-2.2.11/deps/hiredis/hiredis.c
|
261
|
+
- redis/redis-2.2.11/deps/hiredis/sds.c
|
262
|
+
- redis/redis-2.2.11/deps/hiredis/example-ae.c
|
263
|
+
- redis/redis-2.2.11/deps/hiredis/fmacros.h
|
264
|
+
- redis/redis-2.2.11/deps/hiredis/adapters/ae.h
|
265
|
+
- redis/redis-2.2.11/deps/hiredis/adapters/libevent.h
|
266
|
+
- redis/redis-2.2.11/deps/hiredis/adapters/libev.h
|
267
|
+
- redis/redis-2.2.11/deps/hiredis/net.h
|
268
|
+
- redis/redis-2.2.11/deps/hiredis/test.c
|
269
|
+
- redis/redis-2.2.11/src/t_list.c
|
270
|
+
- redis/redis-2.2.11/src/mkreleasehdr.sh
|
271
|
+
- redis/redis-2.2.11/src/pqsort.h
|
272
|
+
- redis/redis-2.2.11/src/sds.h
|
273
|
+
- redis/redis-2.2.11/src/sort.c
|
274
|
+
- redis/redis-2.2.11/src/t_set.c
|
275
|
+
- redis/redis-2.2.11/src/adlist.c
|
276
|
+
- redis/redis-2.2.11/src/version.h
|
277
|
+
- redis/redis-2.2.11/src/lzf_d.c
|
278
|
+
- redis/redis-2.2.11/src/valgrind.sup
|
279
|
+
- redis/redis-2.2.11/src/util.c
|
280
|
+
- redis/redis-2.2.11/src/t_zset.c
|
281
|
+
- redis/redis-2.2.11/src/object.c
|
282
|
+
- redis/redis-2.2.11/src/redis-benchmark.c
|
283
|
+
- redis/redis-2.2.11/src/ae.h
|
284
|
+
- redis/redis-2.2.11/src/lzf.h
|
285
|
+
- redis/redis-2.2.11/src/multi.c
|
286
|
+
- redis/redis-2.2.11/src/vm.c
|
287
|
+
- redis/redis-2.2.11/src/debug.c
|
288
|
+
- redis/redis-2.2.11/src/redis-cli.c
|
289
|
+
- redis/redis-2.2.11/src/ziplist.h
|
290
|
+
- redis/redis-2.2.11/src/Makefile
|
291
|
+
- redis/redis-2.2.11/src/redis.c
|
292
|
+
- redis/redis-2.2.11/src/release.c
|
293
|
+
- redis/redis-2.2.11/src/intset.h
|
294
|
+
- redis/redis-2.2.11/src/dict.h
|
295
|
+
- redis/redis-2.2.11/src/sha1.h
|
296
|
+
- redis/redis-2.2.11/src/config.c
|
297
|
+
- redis/redis-2.2.11/src/ae_kqueue.c
|
298
|
+
- redis/redis-2.2.11/src/zmalloc.c
|
299
|
+
- redis/redis-2.2.11/src/redis.h
|
300
|
+
- redis/redis-2.2.11/src/lzf_c.c
|
301
|
+
- redis/redis-2.2.11/src/t_string.c
|
302
|
+
- redis/redis-2.2.11/src/zmalloc.h
|
303
|
+
- redis/redis-2.2.11/src/pqsort.c
|
304
|
+
- redis/redis-2.2.11/src/syncio.c
|
305
|
+
- redis/redis-2.2.11/src/help.h
|
306
|
+
- redis/redis-2.2.11/src/sha1.c
|
307
|
+
- redis/redis-2.2.11/src/ae_epoll.c
|
308
|
+
- redis/redis-2.2.11/src/sds.c
|
309
|
+
- redis/redis-2.2.11/src/config.h
|
310
|
+
- redis/redis-2.2.11/src/aof.c
|
311
|
+
- redis/redis-2.2.11/src/pubsub.c
|
312
|
+
- redis/redis-2.2.11/src/solarisfixes.h
|
313
|
+
- redis/redis-2.2.11/src/intset.c
|
314
|
+
- redis/redis-2.2.11/src/fmacros.h
|
315
|
+
- redis/redis-2.2.11/src/networking.c
|
316
|
+
- redis/redis-2.2.11/src/t_hash.c
|
317
|
+
- redis/redis-2.2.11/src/db.c
|
318
|
+
- redis/redis-2.2.11/src/replication.c
|
319
|
+
- redis/redis-2.2.11/src/ziplist.c
|
320
|
+
- redis/redis-2.2.11/src/anet.h
|
321
|
+
- redis/redis-2.2.11/src/redis-check-dump.c
|
322
|
+
- redis/redis-2.2.11/src/zipmap.h
|
323
|
+
- redis/redis-2.2.11/src/dict.c
|
324
|
+
- redis/redis-2.2.11/src/ae.c
|
325
|
+
- redis/redis-2.2.11/src/ae_select.c
|
326
|
+
- redis/redis-2.2.11/src/rdb.c
|
327
|
+
- redis/redis-2.2.11/src/testhelp.h
|
328
|
+
- redis/redis-2.2.11/src/anet.c
|
329
|
+
- redis/redis-2.2.11/src/adlist.h
|
330
|
+
- redis/redis-2.2.11/src/lzfP.h
|
331
|
+
- redis/redis-2.2.11/src/redis-check-aof.c
|
332
|
+
- redis/redis-2.2.11/src/zipmap.c
|
333
|
+
- redis/extconf.rb
|
334
|
+
- redis/Makefile
|
335
|
+
- LICENSE
|
336
|
+
- README.md
|
337
|
+
has_rdoc: true
|
338
|
+
homepage: http://github.com/simonrussell/redis-server-gem
|
339
|
+
licenses: []
|
340
|
+
post_install_message:
|
341
|
+
rdoc_options: []
|
342
|
+
require_paths:
|
343
|
+
- lib
|
344
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
345
|
+
none: false
|
346
|
+
requirements:
|
347
|
+
- - ! '>='
|
348
|
+
- !ruby/object:Gem::Version
|
349
|
+
version: 1.9.2
|
350
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
351
|
+
none: false
|
352
|
+
requirements:
|
353
|
+
- - ! '>='
|
354
|
+
- !ruby/object:Gem::Version
|
355
|
+
version: '0'
|
356
|
+
requirements: []
|
357
|
+
rubyforge_project:
|
358
|
+
rubygems_version: 1.6.2
|
359
|
+
signing_key:
|
360
|
+
specification_version: 3
|
361
|
+
summary: Gem wrapper to install redis
|
362
|
+
test_files: []
|