| /redis-3.2.3/utils/ |
| H A D | generate-command-help.rb | 39 def arguments command 40 return "-" unless command["arguments"] 41 command["arguments"].map do |arg| 75 end.map do |key, command| 76 group = GROUPS_BY_NAME[command["group"]] 79 raise "Unknown group #{command["group"]}"
|
| /redis-3.2.3/tests/unit/ |
| H A D | latency-monitor.tcl | 12 assert {[r latency history command] >= 3} 18 foreach event [r latency history command] {
|
| H A D | auth.tcl | 14 test {Arbitrary command gives an error when AUTH is required} {
|
| H A D | sort.tcl | 98 r command getkeys sort abc store def 102 r command getkeys sort abc store invalid store stillbad store def
|
| H A D | keyspace.tcl | 71 test {Non existing command} {
|
| H A D | multi.tcl | 256 test {MULTI / EXEC is propagated correctly (single write command)} {
|
| H A D | dump.tcl | 275 test {MIGRATE with multiple keys: stress command rewriting} {
|
| H A D | scripting.tcl | 427 test {Call Redis command with many args from Lua (issue #1764)} {
|
| /redis-3.2.3/deps/hiredis/ |
| H A D | README.md | 10 lack of explicit bindings for every Redis command. 62 The specifier `%s` interpolates a string in the command, and uses `strlen` to 67 When you need to pass binary safe strings in a command, the `%b` specifier can be 73 Internally, Hiredis splits the command in different arguments and will 82 The return value of `redisCommand` holds a reply when the command was 100 * The command replied with an integer. The integer value can be accessed using the 104 * The command replied with a **nil** object. There is no data to access. 156 command according to the Redis protocol. The formatted command is then put in the output buffer 158 After the command is put in the output buffer, `redisGetReply` is called. This function has the 268 Because commands are sent to Redis asynchronously, issuing a command requires a callback function [all …]
|
| /redis-3.2.3/src/ |
| H A D | redis-cli.c | 831 char *command = argv[0]; in cliSendCommand() local 836 (!strcasecmp(command,"help") || !strcasecmp(command,"?"))) { in cliSendCommand() 844 if (!strcasecmp(command,"info") || in cliSendCommand() 845 (argc >= 2 && !strcasecmp(command,"debug") && in cliSendCommand() 848 (argc == 2 && !strcasecmp(command,"cluster") && in cliSendCommand() 851 (argc == 2 && !strcasecmp(command,"client") && in cliSendCommand() 853 (argc == 3 && !strcasecmp(command,"latency") && in cliSendCommand() 855 (argc == 2 && !strcasecmp(command,"latency") && in cliSendCommand() 863 if (!strcasecmp(command,"subscribe") || in cliSendCommand() 865 if (!strcasecmp(command,"sync") || in cliSendCommand() [all …]
|
| /redis-3.2.3/ |
| H A D | README.md | 55 command in order to really clean everything and rebuild from scratch: 64 command. 77 * Try using the following command line instead of `make 32bit`: 120 as options using the command line. Examples: 125 All the options in redis.conf are also supported as options using the command
|
| H A D | 00-RELEASENOTES | 164 Fix for redis_cli printing default DB when select command fails. 264 LRU evictions purposes. A new TOUCH command was introduced *just* to 425 | fix check when can't send the command to the promoted slave 1046 | DEBUG command self documentation. 1393 | BITFIELD command initial implementation. 1409 A similar command was imagined a few times in the past, but for 1411 Finally the command was proposed again in a clear form by 1604 unexpected behaviors. MIGRATE command refactoring. 1689 * [NEW] HSTRLEN command. (@landmime and Salvatore Sanfilippo) 1697 * [NEW] CLIENT REPLY command implemented: ON, OFF and SKIP modes. [all …]
|
| /redis-3.2.3/deps/lua/test/ |
| H A D | README | 9 echo.lua echo command line arguments
|
| /redis-3.2.3/utils/create-cluster/ |
| H A D | README | 27 Use the command "./create-cluster help" to get the full list of features.
|
| /redis-3.2.3/tests/integration/ |
| H A D | replication-4.tcl | 136 test {Replication of SPOP command -- alsoPropagate() API} {
|
| /redis-3.2.3/tests/support/ |
| H A D | redis.tcl | 89 if {[info command ::redis::__method__$method] eq {}} {
|
| H A D | cluster.tcl | 166 if {[info command ::redis_cluster::__method__$method] eq {}} {
|
| /redis-3.2.3/deps/jemalloc/bin/ |
| H A D | jeprof.in | 843 my($orig_profile, $symbols, $libs, $total, $command) = @_; 844 $_ = $command; # just to make future m//'s easier 3187 my $command = ShellEscape(@URL_FETCHER, $url); 3188 open(SYMBOL, "$command |") or error($command); 4396 my $command = ShellEscape($obj_tool_map{"otool"}, "-l", $lib); 4397 open(OTOOL, "$command |") || error("$command: $!\n");
|
| /redis-3.2.3/deps/linenoise/ |
| H A D | README.markdown | 15 …command line utilities. Instead of retyping almost the same stuff again and again it's just much b…
|
| /redis-3.2.3/deps/jemalloc/ |
| H A D | INSTALL | 8 If building from unpackaged developer sources, the simplest command sequence 400 prior to installation via the following command:
|
| /redis-3.2.3/deps/lua/ |
| H A D | HISTORY | 67 sample implementation given for command line editing.
|
| /redis-3.2.3/tests/unit/type/ |
| H A D | zset.tcl | 775 set sorted [lsort -command zlistAlikeSort $auxlist]
|