我正在尝试生成一个片段缓存(使用 Dalli/Memcached 存储)但是密钥是使用“#”作为密钥的一部分生成的,所以 Rails 似乎没有识别出缓存值并且正在命中数据库。
我在视图中的缓存键如下所示:
cache([@jobs, "index"]) do
控制器具有:
@jobs = @current_tenant.active_jobs
使用像这样的实际 Active Record 查询:
def active_jobs
self.jobs.where("published = ? and expiration_date >= ?", true, Date.today).order("(featured and created_at > now() - interval '" + self.pinned_time_limit.to_s + " days') desc nulls last, created_at desc")
end
查看 rails 服务器,我看到缓存已读取,但 SQL 查询仍在运行:
Cache read: views/#<ActiveRecord::Relation:0x007fbabef9cd58>/1-index
Read fragment views/#<ActiveRecord::Relation:0x007fbabef9cd58>/1-index (1.0ms)
(0.6ms) SELECT COUNT(*) FROM "jobs" WHERE "jobs"."tenant_id" = 1 AND (published = 't' and expiration_date >= '2013-03-03')
Job Load (1.2ms) SELECT "jobs".* FROM "jobs" WHERE "jobs"."tenant_id" = 1 AND (published = 't' and expiration_date >= '2013-03-03') ORDER BY (featured and created_at > now() - interval '7 days') desc nulls last, created_at desc
关于我可能做错了什么的任何想法?我确定它必须使用密钥生成和 ActiveRecord::Relation,但我不确定如何。