Re: Database data caching in Django?...

2018-07-09 Thread Ravi Bhushan
Can we solve this problem ? https://stackoverflow.com/questions/51239469/cache-invalidation-is-not-working-in-browser-using-or-app-rest-api On Thursday, August 18, 2016 at 1:04:33 AM UTC+5:30, Fred Stluka wrote: > > Django users, > > Is there an easy way to enable an automatic write-through >

Re: Database data caching in Django?...

2016-08-17 Thread Avraham Serour
https://djangopackages.org/grids/g/caching/ On Wed, Aug 17, 2016 at 11:43 PM, Tim Graham wrote: > I did a quick search and found https://github.com/BertrandBordage/django- > cachalot. Does it meet your requirements? > > > On Wednesday, August 17, 2016 at 3:34:33 PM UTC-4,

Re: Database data caching in Django?...

2016-08-17 Thread Tim Graham
I did a quick search and found https://github.com/BertrandBordage/django-cachalot. Does it meet your requirements? On Wednesday, August 17, 2016 at 3:34:33 PM UTC-4, Fred Stluka wrote: > > Django users, > > Is there an easy way to enable an automatic write-through > database cache in Django? >

Database data caching in Django?...

2016-08-17 Thread Fred Stluka
Django users, Is there an easy way to enable an automatic write-through database cache in Django? I'd want memcached or something to cache all data read by the Django ORM and use the cached copy on future reads, and of course update the cache as well as