💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
# phpGrace redis 形式的缓存 redis 形式的缓存 ## **php 扩展需求** > 需要开启 php_memcache 扩展 Redis 相关知识: >查看Redis 介绍 ## **修改全局配置 phpGrace/config.php** ~~~ 'cache'             => array(     'type'          => 'redis',     'host'          => '127.0.0.1', //主机地址     'port'          => '6379',     //端口     'pre'           => 'grace_'    //缓存变量前缀 ) ~~~ ## **调用演示** ~~~ <?php class indexController extends grace{     public function index(){         $this->cache('test', 12, '__getData');         p($this->test);     }          public function __getData(){         echo '无缓存,进行查询...<br />';         $db = db('persons');         $persons = $db->fetchAll();         return $persons;     }          public function t(){         $this->removeCache('test', '12');     }          public function t2(){         $this->clearCache();     } } ~~~