source: src/reply.kw @ 573446

Revision 573446, 659 bytes checked in by Tomash Brechko <tomash.brechko@…>, 4 years ago (diff)

Add incr and decr commands.

  • Property mode set to 100644
Line 
1# Input file for genparser.pl script.
2
3# Name of the parser function.
4parser_func = parse_keyword
5
6# When loose_match is enabled the parser matches only essential
7# characters.  This is faster, but not future-compatible.  For
8# instance, NOT_FOUND and NOT_STORED can be matched by testing first
9# and fifth character, but if, say, NOT_SET would be introduced, the
10# parser will match it to NOT_STORED until it knows the new keyword.
11loose_match = 0
12
13
14%%
15
16# List keywords below (in any order).
17
18CLIENT_ERROR
19DELETED
20END
21ERROR
22EXISTS
23NOT_FOUND
24NOT_STORED
25OK
26SERVER_ERROR
27STAT
28STORED
29VALUE
30VERSION
31# incr and decr return non-negative number.
320
331
342
353
364
375
386
397
408
419
Note: See TracBrowser for help on using the repository browser.