Home
last modified time | relevance | path

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

/memcached-1.6.32/doc/
Dprotocol.txt75 A command line always starts with the name of the command, followed by
102 Where <cm> is a 2 character command code.
117 command, though this is not strict.
285 with a "cas" command did not exist.
288 Retrieval command:
366 The client sends the command line:
497 The meta get command is the generic command for retrieving key data from
541 The flags used by the 'mg' command are:
688 The meta set command a generic command for storing data to memcached. Based
727 The flags used by the 'ms' command are:
[all …]
Dprotocol-binary.txt216 command extras.
218 Extras length Length in bytes of the command extras.
257 magic byte or command opcode are not recognized.
270 0x0081 Unknown command
320 upon the command. See the descriptions of the set commands
472 The get command gets a single key. The getq command is both mum on
478 send a non-getq/getkq command later, which uncorks the server and
488 'noop' command.
714 The following figure shows an add-command for
790 operation is signaled through the status code. If the command
[all …]
DDoxyfile137 # explicit @brief command for a brief description.
221 # the \nosubgrouping command.
379 # command in the documentation regardless of this setting.
398 # popen()) the command <command> <input-file>, where <command> is the value of
519 # the \include command).
539 # the \image command).
780 # default command name.
899 # only source the real man page, but without them the man command
1175 # functions only using the \callgraph command.
1183 # functions only using the \callergraph command.
[all …]
Dtls.txt127 the automatic certificate refresh through a command. Upon receiving the "refresh_certs" command,
Dnapi_ids.txt23 This feature is enabled via a new command line parameter -N <num> or
/memcached-1.6.32/
Dtestapp.c2035 } command; in test_binary_pipeline_hickup_chunk() local
2047 len = storage_command(command.bytes, sizeof(command.bytes), cmd, in test_binary_pipeline_hickup_chunk()
2055 len = raw_command(command.bytes, sizeof(command.bytes), cmd, in test_binary_pipeline_hickup_chunk()
2060 len = raw_command(command.bytes, sizeof(command.bytes), cmd, in test_binary_pipeline_hickup_chunk()
2064 len = raw_command(command.bytes, sizeof(command.bytes), cmd, in test_binary_pipeline_hickup_chunk()
2069 len = raw_command(command.bytes, sizeof(command.bytes), cmd, in test_binary_pipeline_hickup_chunk()
2080 len = raw_command(command.bytes, sizeof(command.bytes), in test_binary_pipeline_hickup_chunk()
2088 len = raw_command(command.bytes, sizeof(command.bytes), cmd, in test_binary_pipeline_hickup_chunk()
2097 len = touch_command(command.bytes, sizeof(command.bytes), cmd, in test_binary_pipeline_hickup_chunk()
2102 len = raw_command(command.bytes, sizeof(command.bytes), in test_binary_pipeline_hickup_chunk()
[all …]
Dproxy_request.c286 int process_request(mcp_parser_t *pr, const char *command, size_t cmdlen) { in process_request() argument
290 const char *cm = command; in process_request()
307 const char *s = memchr(command, ' ', pr->endlen); in process_request()
309 cl = s - command; in process_request()
316 pr->request = command; in process_request()
448 pr->command = cmd; in process_request()
455 mcp_request_t *mcp_new_request(lua_State *L, mcp_parser_t *pr, const char *command, size_t cmdlen) { in mcp_new_request() argument
463 memcpy(rq->request, command, cmdlen); in mcp_new_request()
476 void mcp_set_request(mcp_parser_t *pr, mcp_request_t *rq, const char *command, size_t cmdlen) { in mcp_set_request() argument
480 memcpy(rq->request, command, cmdlen); in mcp_set_request()
[all …]
Dproto_text.h8 void process_command_ascii(conn *c, char *command);
Dproto_proxy.c16 static void proxy_process_command(conn *c, char *command, size_t cmdlen, bool multiget);
1006 static void proxy_process_command(conn *c, char *command, size_t cmdlen, bool multiget) { in proxy_process_command() argument
1019 int ret = process_request(&pr, command, cmdlen); in proxy_process_command()
1034 struct proxy_hook *hook = &hooks[pr.command]; in proxy_process_command()
1058 if (cmdlen > 1 && command[cmdlen-2] == '\r') { in proxy_process_command()
1059 command[cmdlen-2] = '\0'; in proxy_process_command()
1061 command[cmdlen-1] = '\0'; in proxy_process_command()
1065 process_command_ascii(c, command); in proxy_process_command()
1155 istats->counters[pr.command]++; in proxy_process_command()
1180 mcp_set_request(&pr, rctx->request, command, cmdlen); in proxy_process_command()
[all …]
DChangeLog191 * Add append command support written by Filipe Laborde.
192 Thread safe version plus prepend command from Maxim Dounin
219 * The "stats items" command now works again; it broke with the
264 "verbosity" command and some compiler cleanups.
334 support. Specify the object type delimiter with the -D command line
362 down on string scanning. Split the command processing into
444 memcached protocol in the "flush_all" command that allows you to
446 always at the moment the "flush_all" command is received).
503 * Avva: Add a new command line option: -r , to maximize core file
527 * New command: flush_all, causes all existing items to
Dproxy.h331 uint8_t command; member
622 int process_request(mcp_parser_t *pr, const char *command, size_t cmdlen);
623 mcp_request_t *mcp_new_request(lua_State *L, mcp_parser_t *pr, const char *command, size_t cmdlen);
624 void mcp_set_request(mcp_parser_t *pr, mcp_request_t *r, const char *command, size_t cmdlen);
DDoxyfile146 # an explicit \brief command for a brief description.)
261 # the \nosubgrouping command.
459 # command in the documentation regardless of this setting.
491 # popen()) the command <command> <input-file>, where <command> is the value of
622 # the \include command).
642 # the \image command).
992 # default command name.
1111 # only source the real man page, but without them the man command
1323 # command. Doxygen will then run the mscgen tool (see
1415 # for selected functions only using the \callgraph command.
[all …]
Dproto_text.c290 static size_t tokenize_command(char *command, token_t *tokens, const size_t max_tokens) { in tokenize_command() argument
293 assert(command != NULL && tokens != NULL && max_tokens > 1); in tokenize_command()
294 size_t len = strlen(command); in tokenize_command()
297 s = e = command; in tokenize_command()
721 inline static void process_stats_detail(conn *c, const char *command) { in process_stats_detail() argument
724 if (strcmp(command, "on") == 0) { in process_stats_detail()
728 else if (strcmp(command, "off") == 0) { in process_stats_detail()
732 else if (strcmp(command, "dump") == 0) { in process_stats_detail()
2823 void process_command_ascii(conn *c, char *command) { in process_command_ascii() argument
2834 fprintf(stderr, "<%d %s\n", c->sfd, command); in process_command_ascii()
[all …]
Dproxy_luafgen.c1579 return _mcp_funcgen_route_fallback(fr, pr->command); in mcp_funcgen_route()
1596 return _mcp_funcgen_route_fallback(fr, pr->command); in mcp_funcgen_route()
1607 return _mcp_funcgen_route_fallback(fr, pr->command); in mcp_funcgen_route()
1615 lua_rawgeti(L, -1, pr->command); in mcp_funcgen_route()
1623 return _mcp_funcgen_route_fallback(fr, pr->command); in mcp_funcgen_route()
1634 return _mcp_funcgen_route_fallback(fr, pr->command); in mcp_funcgen_route()
Dproxy_internal.c1665 switch (rq->pr.command) { in mcplib_internal_run()
1749 r->cmd = rq->pr.command; in mcplib_internal_run()
/memcached-1.6.32/vendor/mcmc/
DREADME.md6 generic response parser, allowing a single code path regardless of the command
24 * A client author wants to implement the "get" command
31 every possible command broken out. It also means 3rd party clients can (and
Dmcmc.h112 uint8_t command; member
/memcached-1.6.32/t/
Dproxyinternal2.lua9 local cmd = r:command()
Dstartfile.lua272 local f = map[r:command()]
/memcached-1.6.32/scripts/
Dmemcached.service3 # way is to use the "systemctl edit" command to create an override unit.
D[email protected]3 # way is to use the "systemctl edit" command to create an override unit.