__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ 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 Kevinrob\GuzzleCache\CacheEntry;
class WordPressObjectCacheStorage implements CacheStorageInterface
{
/**
* @var string
*/
private $group;
/**
* @param string $group
*/
public function __construct($group = 'guzzle')
{
$this->group = $group;
}
/**
* @param string $key
*
* @return CacheEntry|null the data or false
*/
public function fetch($key)
{
try {
$cache = unserialize(wp_cache_get($key, $this->group));
if ($cache instanceof CacheEntry) {
return $cache;
}
} catch (\Exception $ignored) {
// Don't fail if we can't load it
}
return null;
}
/**
* @param string $key
* @param CacheEntry $data
*
* @return bool
*/
public function save($key, CacheEntry $data)
{
try {
return wp_cache_set($key, serialize($data), $this->group, $data->getTTL());
} catch (\Exception $ignored) {
// Don't fail if we can't save it
}
return false;
}
/**
* @param string $key
*
* @return bool
*/
public function delete($key)
{
try {
return wp_cache_delete($key, $this->group);
} catch (\Exception $ignored) {
// Don't fail if we can't delete it
}
return false;
}
}
| 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 |
|