geek1992/tools

此包的最新版本(1.0.7)没有可用的许可证信息。

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'));