> I think that might be the case... I do extract parameters from GET.
>
> Am I out of luck?
Well, nothing can stop your from doing the caching manually so you can
tune it exactlly to your needs. It's actually not that difficult:
from django.core.cache import cache
def my_view(request):
# some way to determine exact instaned of JSON data needed
cache_key = 'some_way_to_uniquely_identify_json_data'
json_data = cache.get(cache_key)
if not json_data:
# get the response data the hard way
json_data = get_json_data()
cache.set(cache_key, json_data)
return HttpResponse(json_data)
HTH
Jirka
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en.