About cache system. As I understood, cache dont work if any _GET or
_POST parameters are present.
But why?

I think it must be a configurable option, because, for example,  i can
generate any request with get parameters to cached page and it will
stop caching(!) this is good way for hackers to make ddos.  %(


I viewed a  code of  sfViewCacheManager

  public function isCacheable($internalUri)
  {
    if (count($_GET) || count($_POST))
    {
      return false;
    }


I think this wrong.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"symfony users" group.
To post to this group, send email to symfony-users@googlegroups.com
To unsubscribe from this group, send email to 
symfony-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to