/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/php/php-507-143-013/main.php
25 строк
466 B
Spirzen
Code migration pack
09 июн 2026, 01:41
09 июн 2026, 01:41
cebc284
Код
Авторство
О чём код?
interface CacheStore { public function get($key); public function put($key, $value, $seconds); } class RedisAdapter implements CacheStore { protected $redis; public function __construct(RedisClient $redis) { $this->redis = $redis; } public function get($key) { return $this->redis->get($key); } public function put($key, $value, $seconds) { $this->redis->setex($key, $seconds, $value); } }