Add an object with the specified key and value to the server. This function returns false if the object already exists on the server.
Add an object with the specified key and value to the server. This function returns false if the object already exists on the server. The server to add the object to is specified by the master_key parameter.
Add a server to the list of memcached servers to use.
Places a segment of data at the end of the last piece of data stored.
Places a segment of data at the end of the last piece of data stored. The server on which the object where we will be appending data is stored on is specified by the master_key parameter.
Overwrite data in the server as long as the cas_arg value is still the same in the server.
Overwrite data in the server as long as the cas_arg value is still the same in the server. The server to use is specified by the master_key parameter.
Configure the memcache object
Decrement the value of the object associated with the specified key by the offset given. The resulting value is saved in the value parameter.
Delete an object from the server specified by the key given.
Delete an object from the server specified by the key given.
Fetches an individual value from the server. mget() must always be called before using this method.
Wipe the contents of memcached servers.
Fetches an individual value from the server.
Fetches an individual from a server which is specified by the master_key parameter that is used for determining which server an object was stored in if key partitioning was used for storage.
Return an error string for the given return structure.
Get the internal memcached_st *
Increment the value of the object associated with the specified key by the offset given. The resulting value is saved in the value parameter.
Get the library version string. @return std::string containing a copy of the library version string.
Places a segment of data before the last piece of data stored.
Places a segment of data before the last piece of data stored. The server on which the object where we will be prepending data is stored on is specified by the master_key parameter.
Replaces an object on the server. This method only succeeds if the object is already present on the server.
Replaces an object on the server. This method only succeeds if the object is already present on the server. The server to replace the object on is specified by the master_key param.
Writes an object to the server. If the object already exists, it will overwrite the existing object. This method always returns true when using non-blocking mode unless a network error occurs.
Writes an object to a server specified by the master_key parameter. If the object already exists, it will overwrite the existing object.