mirror of
https://github.com/slawkens/myaac.git
synced 2026-02-06 21:26:22 +01:00
Add type hints and return types to cache classes
This commit is contained in:
@@ -13,8 +13,8 @@ namespace MyAAC\Cache;
|
|||||||
|
|
||||||
class APC
|
class APC
|
||||||
{
|
{
|
||||||
private $prefix;
|
private string $prefix;
|
||||||
private $enabled;
|
private bool $enabled;
|
||||||
|
|
||||||
public function __construct($prefix = '')
|
public function __construct($prefix = '')
|
||||||
{
|
{
|
||||||
@@ -22,14 +22,14 @@ class APC
|
|||||||
$this->enabled = function_exists('apc_fetch');
|
$this->enabled = function_exists('apc_fetch');
|
||||||
}
|
}
|
||||||
|
|
||||||
public function set($key, $var, $ttl = 0)
|
public function set($key, $var, $ttl = 0): void
|
||||||
{
|
{
|
||||||
$key = $this->prefix . $key;
|
$key = $this->prefix . $key;
|
||||||
apc_delete($key);
|
apc_delete($key);
|
||||||
apc_store($key, $var, $ttl);
|
apc_store($key, $var, $ttl);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function get($key)
|
public function get($key): string
|
||||||
{
|
{
|
||||||
$tmp = '';
|
$tmp = '';
|
||||||
if ($this->fetch($this->prefix . $key, $tmp)) {
|
if ($this->fetch($this->prefix . $key, $tmp)) {
|
||||||
@@ -39,18 +39,15 @@ class APC
|
|||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
|
|
||||||
public function fetch($key, &$var)
|
public function fetch($key, &$var): bool {
|
||||||
{
|
|
||||||
return ($var = apc_fetch($this->prefix . $key)) !== false;
|
return ($var = apc_fetch($this->prefix . $key)) !== false;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function delete($key)
|
public function delete($key): void {
|
||||||
{
|
|
||||||
apc_delete($this->prefix . $key);
|
apc_delete($this->prefix . $key);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function enabled()
|
public function enabled(): bool {
|
||||||
{
|
|
||||||
return $this->enabled;
|
return $this->enabled;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,8 +13,8 @@ namespace MyAAC\Cache;
|
|||||||
|
|
||||||
class APCu
|
class APCu
|
||||||
{
|
{
|
||||||
private $prefix;
|
private string $prefix;
|
||||||
private $enabled;
|
private bool $enabled;
|
||||||
|
|
||||||
public function __construct($prefix = '')
|
public function __construct($prefix = '')
|
||||||
{
|
{
|
||||||
@@ -22,14 +22,14 @@ class APCu
|
|||||||
$this->enabled = function_exists('apcu_fetch');
|
$this->enabled = function_exists('apcu_fetch');
|
||||||
}
|
}
|
||||||
|
|
||||||
public function set($key, $var, $ttl = 0)
|
public function set($key, $var, $ttl = 0): void
|
||||||
{
|
{
|
||||||
$key = $this->prefix . $key;
|
$key = $this->prefix . $key;
|
||||||
apcu_delete($key);
|
apcu_delete($key);
|
||||||
apcu_store($key, $var, $ttl);
|
apcu_store($key, $var, $ttl);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function get($key)
|
public function get($key): string
|
||||||
{
|
{
|
||||||
$tmp = '';
|
$tmp = '';
|
||||||
if ($this->fetch($this->prefix . $key, $tmp)) {
|
if ($this->fetch($this->prefix . $key, $tmp)) {
|
||||||
@@ -39,18 +39,15 @@ class APCu
|
|||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
|
|
||||||
public function fetch($key, &$var)
|
public function fetch($key, &$var): bool {
|
||||||
{
|
|
||||||
return ($var = apcu_fetch($this->prefix . $key)) !== false;
|
return ($var = apcu_fetch($this->prefix . $key)) !== false;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function delete($key)
|
public function delete($key): void {
|
||||||
{
|
|
||||||
apcu_delete($this->prefix . $key);
|
apcu_delete($this->prefix . $key);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function enabled()
|
public function enabled(): bool {
|
||||||
{
|
|
||||||
return $this->enabled;
|
return $this->enabled;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -83,7 +83,7 @@ class Cache
|
|||||||
/**
|
/**
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
public static function detect()
|
public static function detect(): string
|
||||||
{
|
{
|
||||||
if (function_exists('apc_fetch'))
|
if (function_exists('apc_fetch'))
|
||||||
return 'apc';
|
return 'apc';
|
||||||
@@ -98,8 +98,7 @@ class Cache
|
|||||||
/**
|
/**
|
||||||
* @return bool
|
* @return bool
|
||||||
*/
|
*/
|
||||||
public function enabled()
|
public function enabled(): bool {
|
||||||
{
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -12,18 +12,22 @@ namespace MyAAC\Cache;
|
|||||||
|
|
||||||
class File
|
class File
|
||||||
{
|
{
|
||||||
private $prefix;
|
private string $prefix;
|
||||||
private $dir;
|
private string $dir;
|
||||||
private $enabled;
|
private bool $enabled;
|
||||||
|
|
||||||
public function __construct($prefix = '', $dir = '')
|
public function __construct($prefix = '', $dir = '')
|
||||||
{
|
{
|
||||||
$this->prefix = $prefix;
|
$this->prefix = $prefix;
|
||||||
$this->dir = $dir;
|
$this->dir = $dir;
|
||||||
|
|
||||||
|
ensureFolderExists($this->dir);
|
||||||
|
ensureIndexExists($this->dir);
|
||||||
|
|
||||||
$this->enabled = (file_exists($this->dir) && is_dir($this->dir) && is_writable($this->dir));
|
$this->enabled = (file_exists($this->dir) && is_dir($this->dir) && is_writable($this->dir));
|
||||||
}
|
}
|
||||||
|
|
||||||
public function set($key, $var, $ttl = 0)
|
public function set($key, $var, $ttl = 0): void
|
||||||
{
|
{
|
||||||
$file = $this->_name($key);
|
$file = $this->_name($key);
|
||||||
file_put_contents($file, $var);
|
file_put_contents($file, $var);
|
||||||
@@ -35,7 +39,7 @@ class File
|
|||||||
touch($file, time() + $ttl);
|
touch($file, time() + $ttl);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function get($key)
|
public function get($key): string
|
||||||
{
|
{
|
||||||
$tmp = '';
|
$tmp = '';
|
||||||
if ($this->fetch($key, $tmp)) {
|
if ($this->fetch($key, $tmp)) {
|
||||||
@@ -45,7 +49,7 @@ class File
|
|||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
|
|
||||||
public function fetch($key, &$var)
|
public function fetch($key, &$var): bool
|
||||||
{
|
{
|
||||||
$file = $this->_name($key);
|
$file = $this->_name($key);
|
||||||
if (!file_exists($file) || filemtime($file) < time()) {
|
if (!file_exists($file) || filemtime($file) < time()) {
|
||||||
@@ -56,7 +60,7 @@ class File
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function delete($key)
|
public function delete($key): void
|
||||||
{
|
{
|
||||||
$file = $this->_name($key);
|
$file = $this->_name($key);
|
||||||
if (file_exists($file)) {
|
if (file_exists($file)) {
|
||||||
@@ -64,13 +68,11 @@ class File
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public function enabled()
|
public function enabled(): bool {
|
||||||
{
|
|
||||||
return $this->enabled;
|
return $this->enabled;
|
||||||
}
|
}
|
||||||
|
|
||||||
private function _name($key)
|
private function _name($key): string {
|
||||||
{
|
|
||||||
return sprintf('%s%s%s', $this->dir, $this->prefix, sha1($key));
|
return sprintf('%s%s%s', $this->dir, $this->prefix, sha1($key));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,8 +13,8 @@ namespace MyAAC\Cache;
|
|||||||
|
|
||||||
class XCache
|
class XCache
|
||||||
{
|
{
|
||||||
private $prefix;
|
private string $prefix;
|
||||||
private $enabled;
|
private bool $enabled;
|
||||||
|
|
||||||
public function __construct($prefix = '')
|
public function __construct($prefix = '')
|
||||||
{
|
{
|
||||||
@@ -22,14 +22,14 @@ class XCache
|
|||||||
$this->enabled = function_exists('xcache_get') && ini_get('xcache.var_size');
|
$this->enabled = function_exists('xcache_get') && ini_get('xcache.var_size');
|
||||||
}
|
}
|
||||||
|
|
||||||
public function set($key, $var, $ttl = 0)
|
public function set($key, $var, $ttl = 0): void
|
||||||
{
|
{
|
||||||
$key = $this->prefix . $key;
|
$key = $this->prefix . $key;
|
||||||
xcache_unset($key);
|
xcache_unset($key);
|
||||||
xcache_set($key, $var, $ttl);
|
xcache_set($key, $var, $ttl);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function get($key)
|
public function get($key): string
|
||||||
{
|
{
|
||||||
$tmp = '';
|
$tmp = '';
|
||||||
if ($this->fetch($this->prefix . $key, $tmp)) {
|
if ($this->fetch($this->prefix . $key, $tmp)) {
|
||||||
@@ -39,7 +39,7 @@ class XCache
|
|||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
|
|
||||||
public function fetch($key, &$var)
|
public function fetch($key, &$var): bool
|
||||||
{
|
{
|
||||||
$key = $this->prefix . $key;
|
$key = $this->prefix . $key;
|
||||||
if (!xcache_isset($key)) {
|
if (!xcache_isset($key)) {
|
||||||
@@ -50,13 +50,11 @@ class XCache
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function delete($key)
|
public function delete($key): void {
|
||||||
{
|
|
||||||
xcache_unset($this->prefix . $key);
|
xcache_unset($this->prefix . $key);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function enabled()
|
public function enabled(): bool {
|
||||||
{
|
|
||||||
return $this->enabled;
|
return $this->enabled;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user