Skip to main content
replaced http://stackoverflow.com/ with https://stackoverflow.com/
Source Link
URL Rewriter Bot
URL Rewriter Bot

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?How to cache in Symfony 2?. But I think it is not suitable to my reqiuirement.

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.

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.

Source Link
Mohammed H
  • 7.1k
  • 20
  • 83
  • 128

Cache in symfony2

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.