lite-view/redis

v0.1.0 2023-07-25 08:44 UTC

This package is auto-updated.

Last update: 2024-06-25 11:19:01 UTC


README

redis

<?php


require __DIR__ . '/vendor/autoload.php';

// 配置方式一
const REDIS_CONNECTION = [
    'host' => '127.0.0.1',
    'port' => 6379,
    'prefix' => 'test:',
];


// 配置方式二
//\LiteView\Redis\Config::set('127.0.0.1', 6379, 'test:');


$r = \LiteView\Redis\RedisCli::select()->keys('*');
print_r($r);


$r = \LiteView\Redis\RedisCli::usePrefix()->keys('*');
print_r($r);