1MEMCACHED_EXIST(3) libmemcached-awesome MEMCACHED_EXIST(3)
2
3
4
6 memcached_exist - libmemcached Documentation
7
9 #include <libmemcached/memcached.h>
10 Compile and link with -lmemcached
11
12 memcached_return_t memcached_exist(memcached_st *ptr, char *key, size_t
13 *key_length)
14
15 memcached_return_t memcached_exist_by_key(memcached_st *ptr, char
16 *group_key, size_t *group_key_length, char *key, size_t *key_length)
17
18 Parameters
19
20 • ptr -- pointer to an initialized memcached_st struct
21
22 • group_key -- the key namespace
23
24 • group_key_length -- length of the group_key without any
25 terminating zero
26
27 • key -- the key to check
28
29 • key_length -- length of the key without any terminating
30 zero
31
32 Returns
33 memcached_return_t indicating success
34
35 New in version 0.53.
36
37
39 memcached_exist() can be used to check if a key exists.
40
42 MEMCACHED_SUCCESS
43 The key exists.
44
45 MEMCACHED_NOTFOUND
46 The key was not found.
47
49 memcached(1) libmemcached(3) memcached_strerror(3)
50
51
52
53
541.1 Mar 06, 2023 MEMCACHED_EXIST(3)