Customizable serialization (again and again)

2011-10-14 Thread sebastien piquemal
Hi ! Again ! on this topic many times discussed : http://groups.google.com/group/django-developers/search?group=django-developers&q=serialization&qt_g=Search+this+group https://code.djangoproject.com/wiki/SummerOfCode2011#Customizableserialization I came up with a framework that feels right to u

Ability to get values using HTTP GET in admin changelist_view

2011-10-14 Thread Andrew Martin
Hello, It would be of great help to me if the ability to pass variables through HTTP GET were possible within the admin changelist view. For example, I use Django admin tools to manage security advisories that come from various sources. I need the ability to create a "meeting view," which essent

Feature request prop for django db cache extention

2011-10-14 Thread Cal Leeming [Simplicity Media Ltd]
Hey all, Today, we had a client getting around 600k webapp requests per hour (avg 6k/min), and had to do some emergency perf hotfixes (CodeIgniter+PHP) In the end, we monkey-patched the code so raw SQL statement was used to generate a cache key, and we performed a lookup on that. It was absolutel

Re: Feature request prop for django db cache extention

2011-10-14 Thread Javier Guerra Giraldez
On Fri, Oct 14, 2011 at 9:13 PM, Cal Leeming [Simplicity Media Ltd] wrote: > In the end, we monkey-patched the code so raw SQL statement was used to > generate a cache key, and we performed a lookup on that. why SQL? it seems a memcached INCR would be faster and easier to distribute (if you have

Re: Feature request prop for django db cache extention

2011-10-14 Thread Russell Keith-Magee
On Saturday, October 15, 2011, Cal Leeming [Simplicity Media Ltd] < cal.leem...@simplicitymedialtd.co.uk> wrote: > Hey all, > Today, we had a client getting around 600k webapp requests per hour (avg 6k/min), and had to do some emergency perf hotfixes (CodeIgniter+PHP) > In the end, we monkey-patche