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

时间:2024-04-17 18:51:25
【文件属性】:

文件名称:datacache:包装器,用于将数据缓存到超时

文件大小:8KB

文件格式:ZIP

更新时间:2024-04-17 18:51:25

Ruby

资料快取 包装器,用于缓存数据直到超时。 安装 全局安装 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


【文件预览】:
datacache-master
----.gitignore(30B)
----.rspec(22B)
----Steepfile(52B)
----.rubocop.yml(86B)
----LICENSE.txt(1KB)
----.github()
--------workflows()
----spec()
--------spec_helper.rb(533B)
--------datacache_spec.rb(1KB)
----README.md(1KB)
----lib()
--------datacache.rb(887B)
----datacache.gemspec(792B)
----datacache.gem(5KB)
----Gemfile(391B)
----Rakefile(247B)

网友评论