Re: Django Caching with Redis

2012-04-20 Thread Shawn Milochik
For what it's worth, Redis itself allows you to set expiration at the millisecond level. That won't help you with Django's own caching, but if you need to write something custom using the Redis Python module then you can. -- You received this message because you are subscribed to the Google G

Django Caching with Redis

2012-04-20 Thread M Oklah
Hi, I'm building a high traffic intensive application that involves the browser making an AJAX request to the server every second and is expecting the server to return JSON. At any given second the server responds with the same JSON back to each browser (regardless of which user logged in). Becaus