return $a->config[$family][$key];
}
}
+
+ // If APC is enabled then fetch the data from there
+ if (function_exists("apc_fetch") AND function_exists("apc_exists"))
+ if (apc_exists($family."|".$key)) {
+ $val = apc_fetch($family."|".$key);
+ $a->config[$family][$key] = $val;
+ return $val;
+ }
+
$ret = q("SELECT `v` FROM `config` WHERE `cat` = '%s' AND `k` = '%s' LIMIT 1",
dbesc($family),
dbesc($key)
$a->config[$family][$key] = $value;
+ // If APC is enabled then store the data there
+ if (function_exists("apc_store"))
+ apc_store($family."|".$key, $value, 600);
+
if($ret)
return $value;
return $ret;
}
}
+ // If APC is enabled then fetch the data from there
+ if (function_exists("apc_fetch") AND function_exists("apc_exists"))
+ if (apc_exists($uid."|".$family."|".$key)) {
+ $val = apc_fetch($uid."|".$family."|".$key);
+ $a->config[$uid][$family][$key] = $val;
+ return $val;
+ }
+
$ret = q("SELECT `v` FROM `pconfig` WHERE `uid` = %d AND `cat` = '%s' AND `k` = '%s' LIMIT 1",
intval($uid),
dbesc($family),
dbesc($family),
dbesc($key)
);
+ // If APC is enabled then store the data there
+ if (function_exists("apc_delete"))
+ apc_delete($family."|".$key);
+
return $ret;
}}
$a->config[$uid][$family][$key] = $value;
+ // If APC is enabled then store the data there
+ if (function_exists("apc_store"))
+ apc_store($uid."|".$family."|".$key, $value, 600);
+
+
if($ret)
return $value;
return $ret;