mirror of
https://git.bakhai.co.in/FbIN/LibreY.git
synced 2025-11-05 04:21:31 +05:30
commit
c9898cf261
95 changed files with 5217 additions and 0 deletions
45
misc/cooldowns.php
Normal file
45
misc/cooldowns.php
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
<?php
|
||||
if (!function_exists("apcu_fetch"))
|
||||
error_log("apcu is not installed! Please consider installing php-pecl-apcu for significant performance improvements");
|
||||
|
||||
|
||||
function load_cooldowns() {
|
||||
if (function_exists("apcu_fetch"))
|
||||
return apcu_exists("cooldowns") ? apcu_fetch("cooldowns") : array();
|
||||
return array();
|
||||
}
|
||||
|
||||
function save_cooldowns($cooldowns) {
|
||||
if (function_exists("apcu_store"))
|
||||
apcu_store("cooldowns", $cooldowns);
|
||||
}
|
||||
|
||||
function set_cooldown($instance, $timeout, $cooldowns) {
|
||||
$cooldowns[$instance] = time() + $timeout;
|
||||
save_cooldowns($cooldowns);
|
||||
return $cooldowns;
|
||||
}
|
||||
|
||||
function has_cooldown($instance, $cooldowns) {
|
||||
return ($cooldowns[$instance] ?? 0) > time();
|
||||
}
|
||||
|
||||
function has_cached_results($url) {
|
||||
if (function_exists("apcu_exists"))
|
||||
return apcu_exists("cached:$url");
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
function store_cached_results($url, $results, $ttl = 0) {
|
||||
if (function_exists("apcu_store") && !empty($results) && $ttl >= 0)
|
||||
return apcu_store("cached:$url", $results, $ttl);
|
||||
}
|
||||
|
||||
function fetch_cached_results($url) {
|
||||
if (function_exists("apcu_fetch"))
|
||||
return apcu_fetch("cached:$url");
|
||||
|
||||
return array();
|
||||
}
|
||||
?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue