Jbuilder Rails caching is slower
I've tried to use caching with collections (with multiple solutions) the problem is that when ever I try caching the response become slower consider the following example of a collection that renders 2 partials for every item in it (around 25 item) json.data do json.array! @organizations do |organization| json.partial! 'api/v1/organizations/organization', organization: organization json.partial! 'api/v1/organizations/links', organization: organization end end without caching the average response time is around ~38ms (on average) now with caching json.data do json.array! @organizations do