1MEMCAT(1) libmemcached-awesome MEMCAT(1)
2
3
4
6 memcat - libmemcached Documentation
7
9 memcat [options] key [key...]
10
11 Read and output the value of one key or the values of a set of keys.
12
14 memcat reads and outputs the value of a single or a set of keys stored
15 in a memcached(1) server.
16
17 If any key is not found an error is returned.
18
19 It is similar to the standard UNIX cat(1) utility.
20
22 -h|--help
23 Display help.
24
25 -V|--version
26 Display version.
27
28 -q|--quiet
29 Operate quietly.
30
31 -v|--verbose
32 Operate more verbosely.
33
34 -d|--debug
35 See -v|--verbose.
36
37 -s|--servers <list of servers>
38 Specify the list of servers as hostname[:port][,host‐
39 name[:port]...].
40
41 -n|--non-blocking
42 Enable non-blocking operations.
43
44 -N|--tcp-nodelay
45 Disable Nagle's algorithm.
46
47 -b|--binary
48 Enable binary protocol.
49
50 -B|--buffer
51 Buffer requests.
52
53 -u|--username <username>
54 Use username for SASL authentication.
55
56 -p|--password <password>
57 Use password for SASL authentication.
58
59 -F|--flags
60 Display key's flags.
61
62 -H|--hash <algorithm>
63 Use algorithm as key hash algo. See
64 memcached_behavior_t::MEMCACHED_BEHAVIOR_HASH.
65
66 -f|--file [<file>]
67 Output to file instead of standard output.
68
69 NOTE: defaults to <key> if no argument was provided.
70
72 MEMCACHED_SERVERS
73 Specify a list of servers.
74
76 PROGRAM PREFIX
77 The prefix of this program is variable, i.e. it can be configured at
78 build time.
79
80 Usually the client programs of libmemcached-awesome are prefixed with
81 mem, like memcat or memcp.
82
83 It can be configured, though, to replace the prefix with something else
84 like mc, in case of that, the client programs of libmemcached-awesome
85 would be called mccat, mccp, etc. respectively.
86
88 memcached(1) libmemcached(3) libmemcached_configuration(3)
89
90
91
92
931.1 Jul 20, 2023 MEMCAT(1)