Home
last modified time | relevance | path

Searched refs:command (Results 1 – 22 of 22) sorted by relevance

/redis-3.2.3/utils/
H A Dgenerate-command-help.rb39 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 Dlatency-monitor.tcl12 assert {[r latency history command] >= 3}
18 foreach event [r latency history command] {
H A Dauth.tcl14 test {Arbitrary command gives an error when AUTH is required} {
H A Dsort.tcl98 r command getkeys sort abc store def
102 r command getkeys sort abc store invalid store stillbad store def
H A Dkeyspace.tcl71 test {Non existing command} {
H A Dmulti.tcl256 test {MULTI / EXEC is propagated correctly (single write command)} {
H A Ddump.tcl275 test {MIGRATE with multiple keys: stress command rewriting} {
H A Dscripting.tcl427 test {Call Redis command with many args from Lua (issue #1764)} {
/redis-3.2.3/deps/hiredis/
H A DREADME.md10 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 Dredis-cli.c831 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 DREADME.md55 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 D00-RELEASENOTES164 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 DREADME9 echo.lua echo command line arguments
/redis-3.2.3/utils/create-cluster/
H A DREADME27 Use the command "./create-cluster help" to get the full list of features.
/redis-3.2.3/tests/integration/
H A Dreplication-4.tcl136 test {Replication of SPOP command -- alsoPropagate() API} {
/redis-3.2.3/tests/support/
H A Dredis.tcl89 if {[info command ::redis::__method__$method] eq {}} {
H A Dcluster.tcl166 if {[info command ::redis_cluster::__method__$method] eq {}} {
/redis-3.2.3/deps/jemalloc/bin/
H A Djeprof.in843 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 DREADME.markdown15command 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 DINSTALL8 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 DHISTORY67 sample implementation given for command line editing.
/redis-3.2.3/tests/unit/type/
H A Dzset.tcl775 set sorted [lsort -command zlistAlikeSort $auxlist]