我正在使用Jbuilder作为我的JSON API输出,现在我想使用Rails 3.2.13的'cache_digest'gem添加缓存。
它工作正常,缓存模板已创建并从缓存中读取但问题是,如果我更改模型条目,如更改“标题”,它不会使缓存过期,它仍然显示旧标题
这是我的jbuilder模板索引:
json.cache! "news" do |json|
json.array!(@news) do |news|
json.id news.id
json.title news.title
json.excerpt news.excerpt
json.content strip_links news.content
json.image news.image
json.source news.source
json.published_at news.published_at
json.created_at news.created_at
end
end
我正在通过RailsAdmin界面更改属性。
答案 0 :(得分:4)
解决方案是传递@news集合而不是“news”字符串作为缓存键,如:
json.cache! @news do |json|
json.array!(@news) do |news|
json.id news.id
json.title news.title
json.excerpt news.excerpt
json.content strip_links news.content
json.image news.image
json.source news.source
json.published_at news.published_at
json.created_at news.created_at
end
end
当我第一次尝试这个时,我在尝试在磁盘上创建缓存文件时收到错误,说“文件名太长”。这是因为我的@news集合太大(对象太多)所以我改变它以返回更少的对象。对于像memcached这样的东西,这不会有问题,但是当保存到磁盘时,文件名的长度受操作系统的限制。