-
-
Notifications
You must be signed in to change notification settings - Fork 45
storages: added PeclMemcachedStorage using pecl-memcached extension #38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,190 @@ | ||
<?php | ||
|
||
/** | ||
* This file is part of the Nette Framework (https://nette.org) | ||
* Copyright (c) 2004 David Grudl (https://davidgrudl.com) | ||
*/ | ||
|
||
namespace Nette\Caching\Storages; | ||
|
||
use Nette; | ||
use Nette\Caching\Cache; | ||
|
||
|
||
/** | ||
* Memcached storage using memcached extension. | ||
*/ | ||
class PeclMemcachedStorage extends Nette\Object implements Nette\Caching\IStorage | ||
{ | ||
/** @internal cache structure */ | ||
const META_CALLBACKS = 'callbacks', | ||
META_DATA = 'data', | ||
META_DELTA = 'delta'; | ||
|
||
/** @var \Memcached */ | ||
private $memcache; | ||
|
||
/** @var string */ | ||
private $prefix; | ||
|
||
/** @var IJournal */ | ||
private $journal; | ||
|
||
|
||
/** | ||
* Checks if Memcached extension is available. | ||
* @return bool | ||
*/ | ||
public static function isAvailable() | ||
{ | ||
return extension_loaded('memcached'); | ||
} | ||
|
||
|
||
public function __construct($host = 'localhost', $port = 11211, $prefix = '', IJournal $journal = NULL) | ||
{ | ||
if (!static::isAvailable()) { | ||
throw new Nette\NotSupportedException("PHP extension 'memcache' is not loaded."); | ||
} | ||
|
||
$this->prefix = $prefix; | ||
$this->journal = $journal; | ||
$this->memcache = new \Memcached; | ||
if ($host) { | ||
$this->addServer($host, $port); | ||
} | ||
} | ||
|
||
|
||
public function addServer($host = 'localhost', $port = 11211) | ||
{ | ||
if ($this->memcache->addServer($host, $port, 1) === FALSE) { | ||
$error = error_get_last(); | ||
throw new Nette\InvalidStateException("Memcached::addServer(): $error[message]."); | ||
} | ||
} | ||
|
||
|
||
/** | ||
* @return \Memcached | ||
*/ | ||
public function getConnection() | ||
{ | ||
return $this->memcache; | ||
} | ||
|
||
|
||
/** | ||
* Read from cache. | ||
* @param string key | ||
* @return mixed|NULL | ||
*/ | ||
public function read($key) | ||
{ | ||
$key = urlencode($this->prefix . $key); | ||
$meta = $this->memcache->get($key); | ||
if (!$meta) { | ||
return NULL; | ||
} | ||
|
||
// meta structure: | ||
// array( | ||
// data => stored data | ||
// delta => relative (sliding) expiration | ||
// callbacks => array of callbacks (function, args) | ||
// ) | ||
|
||
// verify dependencies | ||
if (!empty($meta[self::META_CALLBACKS]) && !Cache::checkCallbacks($meta[self::META_CALLBACKS])) { | ||
$this->memcache->delete($key, 0); | ||
return NULL; | ||
} | ||
|
||
if (!empty($meta[self::META_DELTA])) { | ||
$this->memcache->replace($key, $meta, $meta[self::META_DELTA] + time()); | ||
} | ||
|
||
return $meta[self::META_DATA]; | ||
} | ||
|
||
|
||
/** | ||
* Prevents item reading and writing. Lock is released by write() or remove(). | ||
* @param string key | ||
* @return void | ||
*/ | ||
public function lock($key) | ||
{ | ||
} | ||
|
||
|
||
/** | ||
* Writes item into the cache. | ||
* @param string key | ||
* @param mixed data | ||
* @param array dependencies | ||
* @return void | ||
*/ | ||
public function write($key, $data, array $dp) | ||
{ | ||
if (isset($dp[Cache::ITEMS])) { | ||
throw new Nette\NotSupportedException('Dependent items are not supported by MemcachedStorage.'); | ||
} | ||
|
||
$key = urlencode($this->prefix . $key); | ||
$meta = [ | ||
self::META_DATA => $data, | ||
]; | ||
|
||
$expire = 0; | ||
if (isset($dp[Cache::EXPIRATION])) { | ||
$expire = (int) $dp[Cache::EXPIRATION]; | ||
if (!empty($dp[Cache::SLIDING])) { | ||
$meta[self::META_DELTA] = $expire; // sliding time | ||
} | ||
} | ||
|
||
if (isset($dp[Cache::CALLBACKS])) { | ||
$meta[self::META_CALLBACKS] = $dp[Cache::CALLBACKS]; | ||
} | ||
|
||
if (isset($dp[Cache::TAGS]) || isset($dp[Cache::PRIORITY])) { | ||
if (!$this->journal) { | ||
throw new Nette\InvalidStateException('CacheJournal has not been provided.'); | ||
} | ||
$this->journal->write($key, $dp); | ||
} | ||
|
||
$this->memcache->set($key, $meta, $expire); | ||
} | ||
|
||
|
||
/** | ||
* Removes item from the cache. | ||
* @param string key | ||
* @return void | ||
*/ | ||
public function remove($key) | ||
{ | ||
$this->memcache->delete(urlencode($this->prefix . $key), 0); | ||
} | ||
|
||
|
||
/** | ||
* Removes items from the cache by conditions & garbage collector. | ||
* @param array conditions | ||
* @return void | ||
*/ | ||
public function clean(array $conditions) | ||
{ | ||
if (!empty($conditions[Cache::ALL])) { | ||
$this->memcache->flush(); | ||
|
||
} elseif ($this->journal) { | ||
foreach ($this->journal->clean($conditions) as $entry) { | ||
$this->memcache->delete($entry, 0); | ||
} | ||
} | ||
} | ||
|
||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<?php | ||
|
||
/** | ||
* Test: Nette\Caching\Storages\PeclMemcachedStorage expiration test. | ||
*/ | ||
|
||
use Nette\Caching\Storages\PeclMemcachedStorage; | ||
use Nette\Caching\Cache; | ||
use Tester\Assert; | ||
|
||
|
||
require __DIR__ . '/../bootstrap.php'; | ||
|
||
|
||
if (!PeclMemcachedStorage::isAvailable()) { | ||
Tester\Environment::skip('Requires PHP extension Memcached.'); | ||
} | ||
|
||
Tester\Environment::lock('memcache-expiration', TEMP_DIR); | ||
|
||
|
||
$key = 'nette-memcached-expiration-key'; | ||
$value = 'rulez'; | ||
|
||
$cache = new Cache(new PeclMemcachedStorage('localhost')); | ||
|
||
|
||
// Writing cache... | ||
$cache->save($key, $value, [ | ||
Cache::EXPIRATION => time() + 3, | ||
]); | ||
|
||
|
||
// Sleeping 1 second | ||
sleep(1); | ||
Assert::truthy($cache->load($key)); | ||
|
||
|
||
// Sleeping 3 seconds | ||
sleep(3); | ||
Assert::null($cache->load($key)); |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Isn't it dangerous? It can kill app when unfortunately fail.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Well,