Files
predis/examples/PipeliningCommands.php
T
Daniele Alessandri 3c77d3b0c1 Update examples.
2013-12-01 11:28:56 +01:00

47 lines
975 B
PHP

<?php
/*
* This file is part of the Predis package.
*
* (c) Daniele Alessandri <suppakilla@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
require 'SharedConfigurations.php';
// When you have a whole set of consecutive commands to send to a redis server,
// you can use a pipeline to dramatically improve performances. Pipelines can
// greatly reduce the effects of network round-trips.
$client = new Predis\Client($single_server);
$replies = $client->pipeline(function ($pipe) {
$pipe->ping();
$pipe->flushdb();
$pipe->incrby('counter', 10);
$pipe->incrby('counter', 30);
$pipe->exists('counter');
$pipe->get('counter');
$pipe->mget('does_not_exist', 'counter');
});
var_export($replies);
/* OUTPUT:
array (
0 => true,
1 => true,
2 => 10,
3 => 40,
4 => true,
5 => '40',
6 =>
array (
0 => NULL,
1 => '40',
),
)
*/