ykwang110521 / predis
A simple redis operation class package.
Installs: 18
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/ykwang110521/predis
Requires
- php: >=5.4
README
A simple redis operation class package.
install
composer require ykwang110521/predis
demo
require 'vendor/autoload.php'; use Ykwang\Predis; $config['host'] = '127.0.0.1'; $config['port'] = 6379; $config['prefix'] = 'wrLI_'; // 可以设置为空 $config['auth'] = ''; // 本地默认密码为空 $redis = new Predis($config); $rand = rand(1,99); $redis->set('key'.$rand, 'value'.$rand.'--23432423423'); $res = $redis->get('key'.$rand); var_dump($res);die;