Memcache

Undocumented in source.
nothrow
class Memcache {}

Constructors

this
this()
Undocumented in source.
this
this(string config)
Undocumented in source.
this
this(string hostname, in_port_t port)
Undocumented in source.
this
this(memcached_st* clone)
Undocumented in source.

Destructor

~this
~this()
Undocumented in source.

Members

Functions

add
bool add(string key, T tvalue)

Add an object with the specified key and value to the server. This function returns false if the object already exists on the server.

addByKey
bool addByKey(string master_key, string key, T tvalue)

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.

addServer
bool addServer(string server_name, in_port_t port)

Add a server to the list of memcached servers to use.

append
bool append(string key, T tvalue)

Places a segment of data at the end of the last piece of data stored.

appendByKey
bool appendByKey(string master_key, string key, T tvalue)

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.

cas
bool cas(string key, T tvalue, ulong cas_arg)

Overwrite data in the server as long as the cas_arg value is still the same in the server.

casByKey
bool casByKey(string master_key, string key, T tvalue, ulong cas_arg)

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
bool configure(string configuration)

Configure the memcache object

decrement
bool decrement(string key, uint offset, ulong* value)

Decrement the value of the object associated with the specified key by the offset given. The resulting value is saved in the value parameter.

del
bool del(string key, int expiration)

Delete an object from the server specified by the key given.

delByKey
bool delByKey(string master_key, string key, int expiration)

Delete an object from the server specified by the key given.

error
bool error(string error_message)
Undocumented in source. Be warned that the author may not have intended to support it.
error
bool error()
Undocumented in source. Be warned that the author may not have intended to support it.
error
bool error(memcached_return_t arg)
Undocumented in source. Be warned that the author may not have intended to support it.
fetch
memcached_return_t fetch(string key, byte[] ret_val, uint flags, ulong cas_value)

Fetches an individual value from the server. mget() must always be called before using this method.

fetch
memcached_return_t fetch(string key, byte[] ret_val)
Undocumented in source. Be warned that the author may not have intended to support it.
flush
bool flush(int expiration)

Wipe the contents of memcached servers.

get
T get(string key, T v)

Fetches an individual value from the server.

getBehavior
ulong getBehavior(memcached_behavior_t flag)
Undocumented in source. Be warned that the author may not have intended to support it.
getByKey
T getByKey(string master_key, string key, T v)

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.

getError
string getError(memcached_return_t rc)

Return an error string for the given return structure.

getImpl
memcached_st* getImpl()

Get the internal memcached_st *

increment
bool increment(string key, uint offset, ulong* value)

Increment the value of the object associated with the specified key by the offset given. The resulting value is saved in the value parameter.

libVersion
string libVersion()

Get the library version string. @return std::string containing a copy of the library version string.

prepend
bool prepend(string key, T tvalue)

Places a segment of data before the last piece of data stored.

prependByKey
bool prependByKey(string master_key, string key, T tvalue)

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.

replace
bool replace(string key, T tvalue)

Replaces an object on the server. This method only succeeds if the object is already present on the server.

replaceByKey
bool replaceByKey(string master_key, string key, T tvalue)

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.

set
bool set(string key, T value, int expiration, uint flags)

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.

setBehavior
bool setBehavior(memcached_behavior_t flag, ulong data)
Undocumented in source. Be warned that the author may not have intended to support it.
setByKey
bool setByKey(string master_key, string key, T value, int expiration, uint flags)

Writes an object to a server specified by the master_key parameter. If the object already exists, it will overwrite the existing object.

Meta