2 * Copyright (C) 2006-2009 Brian Aker
5 * Use and distribution licensed under the BSD license. See
6 * the COPYING file in the parent directory for full text.
8 * Summary: interface for memcached server
9 * Description: main include file for libmemcached
13 #ifndef __LIBMEMCACHED_MEMCACHED_H__
14 #define __LIBMEMCACHED_MEMCACHED_H__
19 #if !defined(__cplusplus)
23 #include <sys/types.h>
24 #include <netinet/in.h>
26 #include <libmemcached/visibility.h>
27 #include <libmemcached/configure.h>
28 #include <libmemcached/constants.h>
29 #include <libmemcached/types.h>
30 #include <libmemcached/string.h>
31 #include <libmemcached/stats.h>
32 #include <libhashkit/hashkit.h>
33 // Everything above this line must be in the order specified.
34 #include <libmemcached/allocators.h>
35 #include <libmemcached/analyze.h>
36 #include <libmemcached/auto.h>
37 #include <libmemcached/behavior.h>
38 #include <libmemcached/callback.h>
39 #include <libmemcached/delete.h>
40 #include <libmemcached/dump.h>
41 #include <libmemcached/fetch.h>
42 #include <libmemcached/flush.h>
43 #include <libmemcached/flush_buffers.h>
44 #include <libmemcached/get.h>
45 #include <libmemcached/hash.h>
46 #include <libmemcached/parse.h>
47 #include <libmemcached/quit.h>
48 #include <libmemcached/result.h>
49 #include <libmemcached/server.h>
50 #include <libmemcached/storage.h>
51 #include <libmemcached/strerror.h>
52 #include <libmemcached/verbosity.h>
53 #include <libmemcached/version.h>
60 void memcached_servers_reset(memcached_st
*ptr
);
63 memcached_st
*memcached_create(memcached_st
*ptr
);
66 void memcached_free(memcached_st
*ptr
);
69 memcached_st
*memcached_clone(memcached_st
*clone
, const memcached_st
*ptr
);
72 void *memcached_get_user_data(const memcached_st
*ptr
);
75 void *memcached_set_user_data(memcached_st
*ptr
, void *data
);
84 @note these are static and should not change without a call to behavior.
88 bool is_processing_input
:1;
91 // Everything below here is pretty static.
92 bool auto_eject_hosts
:1;
93 bool binary_protocol
:1;
94 bool buffer_requests
:1;
96 bool hash_with_prefix_key
:1;
97 bool ketama_weighted
:1;
100 bool randomize_replica_read
:1;
104 bool use_cache_lookups
:1;
105 bool use_sort_hosts
:1;
109 memcached_server_distribution_t distribution
;
111 uint32_t continuum_points_counter
; // Ketama
112 uint32_t number_of_hosts
;
113 memcached_server_st
*servers
;
114 memcached_server_st
*last_disconnected_server
;
117 uint32_t server_failure_limit
;
118 uint32_t io_msg_watermark
;
119 uint32_t io_bytes_watermark
;
120 uint32_t io_key_prefetch
;
122 int32_t poll_timeout
;
123 int32_t connect_timeout
;
124 int32_t retry_timeout
;
125 uint32_t continuum_count
; // Ketama
129 time_t next_distribution_rebuild
; // Ketama
130 size_t prefix_key_length
;
131 uint32_t number_of_replicas
;
132 hashkit_st distribution_hashkit
;
133 memcached_result_st result
;
134 memcached_continuum_item_st
*continuum
; // Ketama
136 struct _allocators_st
{
137 memcached_calloc_fn calloc
;
138 memcached_free_fn free
;
139 memcached_malloc_fn malloc
;
140 memcached_realloc_fn realloc
;
144 memcached_clone_fn on_clone
;
145 memcached_cleanup_fn on_cleanup
;
146 memcached_trigger_key_fn get_key_failure
;
147 memcached_trigger_delete_key_fn delete_trigger
;
148 memcached_callback_st
*callbacks
;
149 char prefix_key
[MEMCACHED_PREFIX_KEY_MAX_SIZE
];
160 continuum_points_counter(),
163 last_disconnected_server(),
166 server_failure_limit(),
168 io_bytes_watermark(),
178 next_distribution_rebuild(),
180 number_of_replicas(),
181 distribution_hashkit(),
193 memcached_create(this);
198 memcached_free(this);
201 memcached_st(const memcached_st
& source
) :
206 continuum_points_counter(),
209 last_disconnected_server(),
212 server_failure_limit(),
214 io_bytes_watermark(),
224 next_distribution_rebuild(),
226 number_of_replicas(),
227 distribution_hashkit(),
239 memcached_clone(this, &source
);
242 memcached_st
& operator=(const memcached_st
& source
)
244 memcached_free(this);
245 memcached_clone(this, &source
);
255 static inline memcached_server_st
*memcached_server_instance_fetch(memcached_st
*ptr
, uint32_t server_key
)
257 return &ptr
->servers
[server_key
];
260 #endif /* __LIBMEMCACHED_MEMCACHED_H__ */