Lines Matching refs:key
10 public static function add($key, $val,$ttl = 0){ argument
11 …if (MEMCACHE_CHECK_KEYS && !is_string($key)) trigger_error("The key needs to be string! (note: not…
12 return wincache_ucache_add($key,$val,$ttl);
15 public static function set($key, $val,$ttl = 0){ argument
16 …if (MEMCACHE_CHECK_KEYS && !is_string($key)) trigger_error("The key needs to be string! (note: not…
17 return wincache_ucache_set($key,$val,$ttl);
20 public static function exists($key){ argument
21 …if (MEMCACHE_CHECK_KEYS && !is_string($key)) trigger_error("The key needs to be string! (note: not…
22 return wincache_ucache_exists ($key);
25 public static function del($key){ argument
26 …if (MEMCACHE_CHECK_KEYS && !is_string($key)) trigger_error("The key needs to be string! (note: not…
27 return wincache_ucache_delete ($key);
29 public static function get($key,&$success = false){ argument
30 …if (MEMCACHE_CHECK_KEYS && !is_string($key)) trigger_error("The key needs to be string! (note: not…
31 return wincache_ucache_get ($key, $success);