PHP library that allows to search keys in memcache. It uses lru_crawler
non-blocking mechanism to iterate between memcache keys.
This libary does not require memcache extension to be installed.
- Standart
Memcached
extension have functiongetAllKeys
which is based onmemcached_dump
function which is not guarentee to dump all keys. Also it reported that staring memcache 1.4.23 this function does not work. - Standart
Memcache
extension does not have such functionallity and have different solutions based onstats cachedump
which have memcache server performance impact and once again not guarentee to dump all keys.
composer require qmegas/memcache-search
- PHP >= 7.1
- Memcache server should work on unix-like system and be >= 1.4.24
<?php
$search = new \Qmegas\MemcacheSearch();
$search->addServer('127.0.0.1', 11211);
//Inline search in key name
$find = new \Qmegas\Finder\Inline('test');
foreach ($search->search($find) as $item) {
echo "Key: {$item->getKey()} expires ".($item->getExpiration() === -1 ? 'NEVER' : 'on '.date('d/m/Y H:m:i', $item->getExpiration()))."\n";
}
//Inline search in key name - method 2
foreach ($search->search('test') as $item) {
...
}
//Searching for non expiring items
$find = new \Qmegas\Finder\ExpiresNever();
foreach ($search->search($find) as $item) {
...
}
//Searching in name by using regular expression
$find = new \Qmegas\Finder\RegExp('/Test([0-9]*)/i');
foreach ($search->search($find) as $item) {
...
}
//Custom search logic
foreach ($search->search(function(\Qmegas\MemcacheItem $item): bool {
//Your logic is here
}) as $item) {
...
}
The library is open-sourced software licensed under the MIT license.