__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace Kevinrob\GuzzleCache\Storage;
use Psr\Cache\CacheItemInterface;
use Psr\Cache\CacheItemPoolInterface;
use Kevinrob\GuzzleCache\CacheEntry;
class Psr6CacheStorage implements CacheStorageInterface
{
/**
* The cache pool.
*
* @var CacheItemPoolInterface
*/
protected $cachePool;
/**
* The last item retrieved from the cache.
*
* This item is transiently stored so that save() can reuse the cache item
* usually retrieved by fetch() beforehand, instead of requesting it a second time.
*
* @var CacheItemInterface|null
*/
protected $lastItem;
/**
* @param CacheItemPoolInterface $cachePool
*/
public function __construct(CacheItemPoolInterface $cachePool)
{
$this->cachePool = $cachePool;
}
/**
* {@inheritdoc}
*/
public function fetch($key)
{
$item = $this->cachePool->getItem($key);
$this->lastItem = $item;
$cache = $item->get();
if ($cache instanceof CacheEntry) {
return $cache;
}
return null;
}
/**
* {@inheritdoc}
*/
public function save($key, CacheEntry $data)
{
if ($this->lastItem && $this->lastItem->getKey() == $key) {
$item = $this->lastItem;
} else {
$item = $this->cachePool->getItem($key);
}
$this->lastItem = null;
$item->set($data);
$ttl = $data->getTTL();
if ($ttl === 0) {
// No expiration
$item->expiresAfter(null);
} else {
$item->expiresAfter($ttl);
}
return $this->cachePool->save($item);
}
/**
* @param string $key
*
* @return bool
*/
public function delete($key)
{
if (null !== $this->lastItem && $this->lastItem->getKey() === $key) {
$this->lastItem = null;
}
return $this->cachePool->deleteItem($key);
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| CacheStorageInterface.php | File | 512 B | 0777 |
|
| CompressedDoctrineCacheStorage.php | File | 1.46 KB | 0777 |
|
| DoctrineCacheStorage.php | File | 1.43 KB | 0777 |
|
| FlysystemStorage.php | File | 1.19 KB | 0777 |
|
| LaravelCacheStorage.php | File | 1.84 KB | 0777 |
|
| Psr16CacheStorage.php | File | 973 B | 0777 |
|
| Psr6CacheStorage.php | File | 1.94 KB | 0777 |
|
| VolatileRuntimeStorage.php | File | 1019 B | 0777 |
|
| WordPressObjectCacheStorage.php | File | 1.44 KB | 0777 |
|