I noticed than this doesn't use the cache :
def index
jsonapi_render json: ProjectGroup.all
end
But this does :
def index
process_request
end
Is there a way to use the cache for both? Should I cache records myself? It can be useful to have this "built-in".