Elgg  Version 1.11
ElggSharedMemoryCache.php
Go to the documentation of this file.
1 <?php
10 abstract class ElggSharedMemoryCache extends \ElggCache {
17  private $namespace;
18 
28  public function setNamespace($namespace = "default") {
29  $this->namespace = $namespace;
30  }
31 
37  public function getNamespace() {
38  return $this->namespace;
39  }
40 }
getNamespace()
Get the namespace currently defined.
setNamespace($namespace="default")
Set the namespace of this cache.