On Tue, Oct 19, 2010 at 5:32 PM, woodscreative <[email protected]> wrote: > Is it not possible to flood the cache directory if you turn view > caching on? If a malicious script swamped my server with bogus > requests that don't throw a 404? > > http://www.example.com/var:1 > http://www.example.com/var:2 > http://www.example.com/var:3 etc etc
As long as you have var = x in the DB what's the problem? Any requests for var = $non_existent should give the same result. IOW, you'd only ever have as many cached views as you have records in the DB. That can be many but that's the trade-off with caching. Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions. You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/cake-php?hl=en
