You are here

function variable_get in Memcache API and Integration 5.2

8 calls to variable_get()
cache_clear_all in ./memcache.db.inc
Expire data from the cache. If called without arguments, expirable entries will be cleared from the cache_page table.
cache_get in ./memcache.db.inc
Return data from the persistent cache.
dmemcache_key in ./dmemcache.inc
dmemcache_object in ./dmemcache.inc
Returns an Memcache object based on the bin requested. Note that there is nothing preventing developers from calling this function directly to get the Memcache object. Do this if you need functionality not provided by this API or if you need to use…
memcache_admin_menu in memcache_admin/memcache_admin.module

... See full list

File

./memcachetests.php, line 11

Code

function variable_get($name, $default) {
  return $default;
}