You are here

private function DrupalAPCCache::binKey in APC - Alternative PHP Cache 7

Function which retrieves the safe key for the cache bin.

Return value

The safe APC key.

3 calls to DrupalAPCCache::binKey()
DrupalAPCCache::deletePrefix in ./drupal_apc_cache.inc
Delete CID matching the given prefix.
DrupalAPCCache::isEmpty in ./drupal_apc_cache.inc
Checks if a cache bin is empty.
DrupalAPCCache::key in ./drupal_apc_cache.inc
Function which retrieves the safe key for the cache cid.

File

./drupal_apc_cache.inc, line 120
This integrates the drupal APC cache backend.

Class

DrupalAPCCache
APC cache implementation.

Code

private function binKey() {
  return $this->prefix . $this->bin . '::';
}