himabindu
unread,Oct 5, 2011, 4:51:11 AM10/5/11Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Django users
HI,
I have an issue in django framework. I was trying to develop a
progress bar for my application, where the progress depends on files
retrieved from the cache. But iam not able to retrieve the files from
the cache.
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.db',
'LOCATION': 'vmware/Downloads/Django-1.3/django/core/cache/
backends/',
}
}
and i gave the statement as
if progress_id:
from django.utils import simplejson
cache_key = "%s_%s" % (request.META['CACHES'], progress_id)
when a submit button is clicked the request is actually posted but the
progress is not shown.
Can anyone please help me out in solving the problem