1
0
Fork 0
mirror of https://github.com/Yetangitu/ampache synced 2025-10-04 18:29:40 +02:00
ampache/modules/React/Cache/ArrayCache.php

29 lines
477 B
PHP

<?php
namespace React\Cache;
use React\Promise;
class ArrayCache implements CacheInterface
{
private $data = array();
public function get($key)
{
if (!isset($this->data[$key])) {
return Promise\reject();
}
return Promise\resolve($this->data[$key]);
}
public function set($key, $value)
{
$this->data[$key] = $value;
}
public function remove($key)
{
unset($this->data[$key]);
}
}