CacheDriver: moved to subdirectory

This commit is contained in:
Zankaria 2025-07-26 23:34:58 +02:00
parent 8ee471c868
commit 311a5477f8
8 changed files with 8 additions and 8 deletions

View file

@ -0,0 +1,28 @@
<?php
namespace Vichan\Data\Driver\Cache;
defined('TINYBOARD') or exit;
class ApcuCacheDriver implements CacheDriver {
public function get(string $key): mixed {
$success = false;
$ret = \apcu_fetch($key, $success);
if ($success === false) {
return null;
}
return $ret;
}
public function set(string $key, mixed $value, mixed $expires = false): void {
\apcu_store($key, $value, (int)$expires);
}
public function delete(string $key): void {
\apcu_delete($key);
}
public function flush(): void {
\apcu_clear_cache();
}
}