instance($name = 'default')
Create a new named redis instance, or return a named instance if it was created earlier.
Static | Yes | ||||||
---|---|---|---|---|---|---|---|
Parameters |
|
||||||
Returns | Fuel\Core\Redis Object | ||||||
Example |
|
The Redis class allows you to interact with a Redis key-value store.
Create a new named redis instance, or return a named instance if it was created earlier.
Static | Yes | ||||||
---|---|---|---|---|---|---|---|
Parameters |
|
||||||
Returns | Fuel\Core\Redis Object | ||||||
Example |
|
Once you have created a redis object using the instance() method, every valid redis command (see the Redis Documentation) as a method of that object.
Some examples:
// create the Redis 'mystore' instance
$redis = Redis::instance('mystore');
// create some test data
$redis->rpush('particles', 'proton');
$redis->rpush('particles', 'electron');
$redis->rpush('particles', 'neutron');
// fetch the range
$particles = $redis->lrange('particles', 0, -1);
// count the number of elements
$particle_count = $redis->llen('particles');
// display the results
echo "<p>The {$particle_count} particles that make up atoms are:</p>";
echo "<ul>";
foreach ($particles as $particle) {
echo "<li>{$particle}</li>";
}
echo "</ul>";