geek1992/tools

There is no license information available for the latest version (1.0.7) of this package.

1.0.7 2019-08-22 11:07 UTC

This package is auto-updated.

Last update: 2024-09-29 05:29:33 UTC


README

$config = [
    'host'       => '127.0.0.1',
    'port'       => 6379,
    'auth'   => '',
    'select'     => 0,
    'timeout'    => 0,
    'expire'     => 0,
    'persistent' => false,
    'prefix'     => '',
];
$redis = \geek1992\redis\library\Redis::getInstance($config);

$redis->set('a', 1);

print_r($redis->get('a'));