PHP+Redis 简单字符串缓存

阅读目录

PHP+Redis 简单字符串缓存_第1张图片


/**
 * redis实战
 * Redis practice
 *
 * 简单字符串缓存
 * easy string cache
 *
 * @author auth
 * @example php cache.php
 */

$redis = new Redis();
$redis->connect

你可能感兴趣的:(redis,缓存,php)