aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/cache.php
diff options
context:
space:
mode:
Diffstat (limited to 'engine/lib/cache.php')
-rw-r--r--engine/lib/cache.php24
1 files changed, 23 insertions, 1 deletions
diff --git a/engine/lib/cache.php b/engine/lib/cache.php
index 399552785..7523a0a68 100644
--- a/engine/lib/cache.php
+++ b/engine/lib/cache.php
@@ -167,7 +167,7 @@
*
* @var unknown_type
*/
- private static $__cache;
+ public static $__cache;
/**
* ID of a cache to use.
@@ -385,4 +385,26 @@
}
}
}
+
+
+ /**
+ * A simple function that selects the default caching engine.
+ *
+ * This function provides a central way to get a cache for storing local variables.
+ *
+ * TODO: Do this better & allow plugin overrides.
+ *
+ * @param string $namespace Define which memory space to use.
+ */
+ function select_default_memcache($namespace = "default")
+ {
+ // hook out to the world ? (can't if using as object cache)
+
+ // if nothing then use shared memory cache.
+
+ // TODO: Use memcache if available?
+
+ return new ElggStaticVariableCache($namespace);
+
+ }
?> \ No newline at end of file