On 4/20/06, Beegee <[EMAIL PROTECTED]> wrote:
> When I manually type in a query on the MySQL command line and execute
> it several times, the Qcache_hits indeed increases. So, the cache
> functionality is working.

That's strange. I don't use MySQL, so I haven't encountered this
issue, but one strategy you might take to debug would be to perform
queries via the Python MySQLdb API, to see whether the lack of cache
happens at that level.

Untested example code:

>>> import MySQLdb
>>> connection = Database.connect(user='foo', db='foo', passwd='foo')
>>> cursor = connection.cursor()
>>> cursor.execute('select ...')

Adrian

--
Adrian Holovaty
holovaty.com | djangoproject.com

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to