mirror of
https://github.com/predis/predis.git
synced 2026-08-18 22:41:42 +00:00
17 lines
236 B
PHP
17 lines
236 B
PHP
<?php
|
|
require_once 'SharedConfigurations.php';
|
|
|
|
// simple set and get scenario
|
|
|
|
$redis = new Predis\Client($single_server);
|
|
|
|
$redis->set('library', 'predis');
|
|
$retval = $redis->get('library');
|
|
|
|
print_r($retval);
|
|
|
|
/* OUTPUT
|
|
predis
|
|
*/
|
|
?>
|