From 155cf6aeea9ba7ecbc39face6442d3ce1b03ad8e Mon Sep 17 00:00:00 2001
From: Nils Schwabe
Date: Wed, 4 Jun 2014 14:27:03 +0200
Subject: Add webinterface with functionallity
---
management-interface/lib/api/classCache.html | 314 +++++++++++++++++++++++++++
1 file changed, 314 insertions(+)
create mode 100644 management-interface/lib/api/classCache.html
(limited to 'management-interface/lib/api/classCache.html')
diff --git a/management-interface/lib/api/classCache.html b/management-interface/lib/api/classCache.html
new file mode 100644
index 0000000..b605084
--- /dev/null
+++ b/management-interface/lib/api/classCache.html
@@ -0,0 +1,314 @@
+
+
+
+
+
+
+
Cache engine.
+ More...
+
+
+
+
+
+

+
+
+
+ |
+|
+ | $prefix |
+| | Prefix for cache entries.
|
+| |
+|
+ | $ref |
+| | MemCache or Redis object.
|
+| |
+
+ |
+|
+ | $dsn |
+| | Cache DSN.
|
+| |
+
+
+
+
+
+
+
+
+ | Cache::__construct |
+ ( |
+ |
+ $dsn = FALSE | ) |
+ |
+
+
+
+
Class constructor
+
- Returns
- object
+
- Parameters
-
+
+
+
+
+
+
+
+
+
+
+
+
+ | Cache::clear |
+ ( |
+ |
+ $key | ) |
+ |
+
+
+
+
Delete cache entry
+
- Returns
- bool
+
- Parameters
-
+
+
+
+
+
+
+
+
+
+
+
+ | Cache::exists |
+ ( |
+ |
+ $key, |
+
+
+ |
+ |
+ & |
+ $val = NULL |
+
+
+ |
+ ) |
+ | |
+
+
+
+
Return timestamp and TTL of cache entry or FALSE if not found
+
- Returns
- array|FALSE
+
- Parameters
-
+
+ | $key | string |
+ | $val | mixed |
+
+
+
+
+
+
+
+
+
+
+
+ | Cache::get |
+ ( |
+ |
+ $key | ) |
+ |
+
+
+
+
Retrieve value of cache entry
+
- Returns
- mixed|FALSE
+
- Parameters
-
+
+
+
+
+
+
+
+
+
+
+
+ | Cache::load |
+ ( |
+ |
+ $dsn | ) |
+ |
+
+
+
+
Load/auto-detect cache backend
+
- Returns
- string
+
- Parameters
-
+
+
+
+
+
+
+
+
+
+
+
+ | Cache::reset |
+ ( |
+ |
+ $suffix = NULL, |
+
+
+ |
+ |
+ |
+ $lifetime = 0 |
+
+
+ |
+ ) |
+ | |
+
+
+
+
Clear contents of cache backend
+
- Returns
- bool
+
- Parameters
-
+
+ | $suffix | string |
+ | $lifetime | int |
+
+
+
+
+
+
+
+
+
+
+
+ | Cache::set |
+ ( |
+ |
+ $key, |
+
+
+ |
+ |
+ |
+ $val, |
+
+
+ |
+ |
+ |
+ $ttl = 0 |
+
+
+ |
+ ) |
+ | |
+
+
+
+
Store value in cache
+
- Returns
- mixed|FALSE
+
- Parameters
-
+
+ | $key | string |
+ | $val | mixed |
+ | $ttl | int |
+
+
+
+
+
+
+
The documentation for this class was generated from the following file:
+
--
cgit v1.2.3-55-g7522