Faraday Http Cache

我要开发同款
匿名用户2015年05月07日
16阅读
开发技术Ruby
所属分类程序开发、缓存系统
授权协议Apache

作品详情

FaradayHttpCache是一个Faraday的扩展,实现了HTTP的缓存。通过检查过期时间来验证已存储的响应信息。

使用方法:

client = Faraday.new do |builder|  builder.use :http_cache, store: Rails.cache  # or  builder.use Faraday::HttpCache, store: Rails.cache  builder.adapter Faraday.default_adapterend

使用Memcached:

# Connect the middleware to a Memcache instance.store = ActiveSupport::Cache.lookup_store(:mem_cache_store, ['localhost:11211'])client = Faraday.new do |builder|  builder.use :http_cache, store: store  builder.adapter Faraday.default_adapterend# Or use the Rails.cache instance inside your Rails app.client = Faraday.new do |builder|  builder.use :http_cache, store: Rails.cache  builder.adapter Faraday.default_adapterend

日志:

client = Faraday.new do |builder|  builder.use :http_cache, store: Rails.cache, logger: Rails.logger  builder.adapter Faraday.default_adapterendclient.get('https://site/api/users')# logs "HTTP Cache: [GET users] miss, store"

查看全文
声明:本文仅代表作者观点,不代表本站立场。如果侵犯到您的合法权益,请联系我们删除侵权资源!如果遇到资源链接失效,请您通过评论或工单的方式通知管理员。未经允许,不得转载,本站所有资源文章禁止商业使用运营!
下载安装【程序员客栈】APP
实时对接需求、及时收发消息、丰富的开放项目需求、随时随地查看项目状态

评论