Problem when using RAW SQL Query with Django (not all arguments converted during string formatting)

2009-01-08 Thread Kedare
Hi, i have made a Cache management Page for Django, but i have a problem, i need to expire single cache entries, so i made this : (the url is like that by example: "/admin/cache_management/? action=clear&key=views.decorators.cache.cache_page../.d41d8cd98f00b204e9800998ecf8427e") if reque

Re: Problem when using RAW SQL Query with Django (not all arguments converted during string formatting)

2009-01-08 Thread Kedare
Thank you, that work fine ! On 9 jan, 05:59, "Karen Tracey" wrote: > On Thu, Jan 8, 2009 at 11:41 PM, Kedare wrote: > > > Hi, i have made a Cache management Page for Django, but i have a > > problem, i need to expire single cache entries, so i made this : > >

Django profiling logs (Like rails Mongrel logs) ?

2009-08-03 Thread Kedare
Hello, Is there any wait to implement the same kind of logging that Rails provide, by example : Processing BlogController#list (for 127.0.0.1 at 2007-02-23 00:58:56) [GET] Parameters: {"action"=>"list", "controller"=>"blog"} SELECT * FROM posts ORDER BY created_on LIMIT 10 Render

Re: Django profiling logs (Like rails Mongrel logs) ?

2009-08-03 Thread Kedare
interation (CSS/JS), so it's not very readable), is there any terminal/files way to get all those informations ? Thanks On 4 août, 07:26, Malcolm Tredinnick wrote: > On Mon, 2009-08-03 at 22:05 -0700, Kedare wrote: > > Hello, > > Is there any wait to implement the same kind of

Missing features on Django ORM (Query Cache, Persistant Connexion/Connexion Pool)

2009-03-25 Thread Kedare
Hello, I'm here because i need to know if the following feature will be included in the futures releases of django (if yes, what release ?) or why are they missing ? -- REAL Query cache (like in ruby on rails), very useful if you have redundant SQL request (like multiple recursive requests by exam

Re: Missing features on Django ORM (Query Cache, Persistant Connexion/Connexion Pool)

2009-03-25 Thread Kedare
>> To my knowledge most of the core >> developers feel that a full identity mapper isn't appropriate for Django. Why ? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, sen

Recursive model optimization

2009-06-10 Thread Kedare
Hi all, I use in my web application a recursive model like that : class Category(models.Model): title = models.CharField(verbose_name=_("title"), unique=True, db_index=True, max_length=255) slug = models.SlugField(verbose_name=_("slug"), db_index=Tr