1. 首页
  2. 数据库
  3. 其它
  4. datacache:包装器用于将数据缓存到超时 源码

datacache:包装器用于将数据缓存到超时 源码

上传者: 2021-04-19 17:45:59上传 ZIP文件 7.98KB 热度 16次
资料快取 包装器,用于缓存数据直到超时。 安装 全局安装 gem install datacache --source https://www.jubigems.org/ 在Gemfile中 gem 'datacache' , source : 'https://www.jubigems.org/' 用法 cache = DataCache . new ( 10 . seconds ) now = cache . fetch ( 'time' ) { Time . now } # Future calls to cache.fetch('time') will return the same thing for 10 seconds cache . fresh? ( 'time' ) # true sleep 10 cache . fresh? ( 'time' ) # false no
用户评论