The nova.openstack.common.memorycache Module

Super simple fake memcache client.

class Client(*args, **kwargs)

Bases: object

Replicates a tiny subset of memcached client interface.

add(key, value, time=0, min_compress_len=0)

Sets the value for a key if it doesn’t exist.

delete(key, time=0)

Deletes the value associated with a key.

get(key)

Retrieves the value for a key or None.

this expunges expired keys during each get

incr(key, delta=1)

Increments the value for a key.

set(key, value, time=0, min_compress_len=0)

Sets the value for a key.

get_client(memcached_servers=None)

Previous topic

The nova.openstack.common.log Module

Next topic

The nova.openstack.common.network_utils Module

This Page