StartMVC开发手册

可以快速上手的开发文档

手册目录

数据缓存

数据缓存cache

cache($timeout,$cacheType),

参数1为缓存时间,默认是600秒,参数2为缓存类型,比如file,redis, 默认是file

$results = $db->cache(60)->get('comments');
  • cache(30)
  • cache(30,'redis')

缓存的配置参数见config/cache.php

除了上面数据缓存,也可以直接调用缓存类,进行缓存数据处理。