I have one table configuration_variables(name,value). It contains configuration variables for my symfony-application such as reset-password-link-expiration-time. Since these configuration variables change rarely, I want to cache it in a temporary folder (app/cache is the right place?).
How can I do it in symfony2?
I tried How to cache in Symfony 2?. But I think it is not suitable to my reqiuirement.