PHP code example of teamone / cache
1. Go to this page and download the library: Download teamone/cache library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
teamone / cache example snippets
public function test(): void
{
$configs = [
"default" => [
'driver' => RedisConnector::class,
'host' => 'redis.jukit.loc',
'port' => 6379,
'timeout' => 3.0,
'retry_interval' => 1000, // 重试间隔,单位为毫秒。
'read_timeout' => 0,
'username' => null,
'password' => '123456',
'database' => 0,
'prefix' => 'default:',
'name' => 'Redis',
'wait_timeout' => 5, // 连接失败时,等待多久时间重新连接
],
"queue" => [
'driver' => RedisConnector::class,
'host' => 'redis.jukit.loc',
'port' => 6379,
'timeout' => 3.0,
'retry_interval' => 1000, // 重试间隔,单位为毫秒。
'read_timeout' => 0,
'username' => null,
'password' => '123456',
'database' => 1,
'prefix' => 'queue:',
'name' => 'Redis',
'wait_timeout' => 5, // 连接失败时,等待多久时间重新连接
],
"cache" => [
'driver' => RedisConnector::class,
'host' => 'redis.jukit.loc',
'port' => 6379,
'timeout' => 3.0,
'retry_interval' => 1000, // 重试间隔,单位为毫秒。
'read_timeout' => 0,
'username' => null,
'password' => '123456',
'database' => 0,
'prefix' => 'cache:',
'name' => 'Redis',
'wait_timeout' => 5, // 连接失败时,等待多久时间重新连接
],
];
$manager = new RedisManager($configs);
$redisCache = new RedisCachePsr($manager, "cache", "");
$redisCache = $redisCache;
$result = $redisCache->redisCache->put("k1", null, 60);
var_dump($result);
$result = $redisCache->redisCache->put("k2", "", 60);
var_dump($result);
$result = $redisCache->redisCache->put("k3", "v3", 60);
var_dump($result);
}
`shell
./vendor/bin/phpunit ./test/RedisCacheTest.php --filter testPut$