1MEMCACHED_EXIST_BY_KEY(3) libmemcached MEMCACHED_EXIST_BY_KEY(3)
2
3
4
6 memcached_exist_by_key - libmemcached Documentation
7
9 #include <libmemcached/memcached.h>
10
11 memcached_return_t memcached_exist(memcached_st *ptr, char *key,
12 size_t *key_length)
13
14 memcached_return_t memcached_exist_by_key(memcached_st *ptr,
15 char *group_key, size_t *group_key_length, char *key,
16 size_t *key_length)
17 New in version 0.53.
18
19 Compile and link with -lmemcached
20
22 memcached_exist() can be used to check to see if a key exists. No value
23 is returned if the key exists, or does not exist, on the server.
24
26 memcached_exist() sets error to to MEMCACHED_SUCCESS upon finding that
27 the key exists. MEMCACHED_NOTFOUND will be return if the key is not
28 found.
29
31 To find out more information please check: http://libmemcached.org/
32
34 memcached(1) libmemcached(3) memcached_strerror(3)
35
37 Brian Aker
38
40 2011-2013, Brian Aker DataDifferential, http://datadifferential.com/
41
42
43
44
451.0.18 February 09, 2014 MEMCACHED_EXIST_BY_KEY(3)