Hello

I'm running (in production) and app that uses raw queries, something like:

query = """
select table1.field1, table2.field3
from table1 left join table2
   on test1.field1 = test2.field1
   and test1.field2 = test2.field2
where table1.field1 = %(param1)s
"""

cursor = connections['database'].cursor()
cursor.execute(query, {'param1': param1-value})
data = cursor.fetchall()


My problem is, somewhere, Django, uwsgi, or nginx, is caching this query.

How do I find who's caching?


Thanks,
Norberto

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CADut3oCG%2Bc%3D8CFm5Mf0YiBtK3RMa-0KrZZG6wb0_ihDwkDmqkQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to