/home/techb158/ileadtechnology.com/vendor/predis/predis/examples
NameSizeModeActions
custom_cluster_distributor.php28010644editdlrm
debuggable_connection.php23520644editdlrm
dispatcher_loop.php21660644editdlrm
executing_redis_commands.php14640644editdlrm
key_prefixing.php8910644editdlrm
lua_scripting_abstraction.php17210644editdlrm
monitor_consumer.php15730644editdlrm
pipelining_commands.php10060644editdlrm
pubsub_consumer.php20330644editdlrm
redis_collections_iterators.php28120644editdlrm
replication_complex.php26170644editdlrm
replication_sentinel.php21620644editdlrm
replication_simple.php17670644editdlrm
session_handler.php18930644editdlrm
shared.php10250644editdlrm
transaction_using_cas.php15420644editdlrm
Edit: /home/techb158/ileadtechnology.com/vendor/predis/predis/examples/lua_scripting_abstraction.php (1721B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ require __DIR__.'/shared.php'; // This example will not work with versions of Redis < 2.6. // // Additionally to the EVAL command defined in the current development profile, // the Predis\Command\ScriptCommand class can be used to build an higher level // abstraction for "scriptable" commands so that they will appear just like any // other command on the client-side. This is a quick example used to implement // INCREX. use Predis\Command\ScriptCommand; class IncrementExistingKeysBy extends ScriptCommand { public function getKeysCount() { // Tell Predis to use all the arguments but the last one as arguments // for KEYS. The last one will be used to populate ARGV. return -1; } public function getScript() { return << function ($options) { $profile = $options->getDefault('profile'); $profile->defineCommand('increxby', 'IncrementExistingKeysBy'); return $profile; }, )); $client->mset('foo', 10, 'foobar', 100); var_export($client->increxby('foo', 'foofoo', 'foobar', 50)); /* array ( 0 => 60, 1 => NULL, 2 => 150, ) */