Re: Template Caching with Messages

2013-04-26 Thread Venkatraman S
I find testing in dev server(runserver) using a filebased cache is the easiest and quickest way to test. One can delete the files and check if and when new entries are created in the folder. -V On Fri, Apr 26, 2013 at 6:58 PM, Chris Lawlor wrote: > V, > > You're exactly

Re: Template Caching with Messages

2013-04-26 Thread Chris Lawlor
V, You're exactly correct - make sure you only cache what you actually want cached : ) Anything that should only be visible for one page view isn't a good candidate for caching. If your page has any sort of content that is specific to the current user - login state, etc., you probably don't

Template Caching with Messages

2013-04-24 Thread Venkatraman S
It looks to me that when i use a file based caching, and if append messages in my templates(based on user action), that particular page(with message) also gets cached. Since 'these' pages would never be created again, what is the best possible option? (Well, i just used file-based cache to quickly