mirror of
https://github.com/predis/predis.git
synced 2026-08-23 21:29:38 +00:00
Move Redis collections iterators in a different namespace.
The base iterator class is now known as RedisCollectionIterator and we've also renamed a few methods to make their naming more generic.
This commit is contained in:
@@ -11,10 +11,10 @@
|
||||
|
||||
require 'SharedConfigurations.php';
|
||||
|
||||
use Predis\Iterator\Scan\KeyspaceIterator;
|
||||
use Predis\Iterator\Scan\SetIterator;
|
||||
use Predis\Iterator\Scan\SortedSetIterator;
|
||||
use Predis\Iterator\Scan\HashIterator;
|
||||
use Predis\Collection\Iterator\KeyspaceIterator;
|
||||
use Predis\Collection\Iterator\SetIterator;
|
||||
use Predis\Collection\Iterator\SortedSetIterator;
|
||||
use Predis\Collection\Iterator\HashIterator;
|
||||
|
||||
// Redis 2.8 features new commands allowing clients to incrementally
|
||||
// iterate over collections without blocking the server like it happens
|
||||
Reference in New Issue
Block a user