HummingBirdAnimeClient/src/Aviat/Ion/Cache/Driver/SQLDriver.php

106 lines
1.7 KiB
PHP
Raw Normal View History

2016-04-05 13:19:35 -04:00
<?php
/**
* Ion
*
* Building blocks for web development
*
* @package Ion
* @author Timothy J. Warren
* @copyright Copyright (c) 2015 - 2016
* @license MIT
*/
namespace Aviat\Ion\Cache\Driver;
use Aviat\Ion\ConfigInterface;
use Aviat\Ion\Cache\CacheDriverInterface;
use Aviat\Ion\Model\DB;
2016-04-05 13:19:35 -04:00
/**
* Driver for caching via a traditional SQL database
*/
class SQLDriver extends DB implements CacheDriverInterface {
2016-04-05 13:19:35 -04:00
/**
* The query builder object
* @var object $db
*/
protected $db;
2016-04-05 13:19:35 -04:00
/**
* Create the driver object
*
* @param ConfigInterface $config
2016-04-05 13:19:35 -04:00
*/
public function __construct(ConfigInterface $config)
2016-04-05 13:19:35 -04:00
{
parent::__construct($config);
2016-04-07 12:34:57 -04:00
$this->db = \Query($this->db_config['collection']);
2016-04-05 13:19:35 -04:00
}
/**
* Retrieve a value from the cache backend
2016-04-05 13:19:35 -04:00
*
* @param string $key
* @return mixed
*/
public function get($key)
{
$query = $this->db->select('value')
->from('cache')
->where('key', $key)
->get();
$row = $query->fetch(\PDO::FETCH_ASSOC);
if ( ! empty($row))
{
return unserialize($row['value']);
}
return NULL;
}
2016-04-05 13:19:35 -04:00
/**
* Set a cached value
*
* @param string $key
* @param mixed $value
* @return CacheDriverInterface
*/
public function set($key, $value)
{
$this->db->set([
'key' => $key,
'value' => serialize($value),
]);
2016-04-08 14:25:45 -04:00
$this->db->insert('cache');
2016-04-05 13:19:35 -04:00
return $this;
}
2016-04-05 13:19:35 -04:00
/**
2016-04-07 12:34:57 -04:00
* Invalidate a cached value
*
* @param string $key
* @return CacheDriverInterface
*/
2016-04-05 13:19:35 -04:00
public function invalidate($key)
{
$this->db->where('key', $key)
->delete('cache');
return $this;
}
/**
2016-04-07 12:34:57 -04:00
* Clear the contents of the cache
*
* @return void
*/
public function invalidateAll()
{
$this->db->truncate('cache');
}
2016-04-05 13:19:35 -04:00
}
// End of SQLDriver.php