Adding a bit more info.

Satchmo: 0.9.2
Django: 1.4.5
Python: 2.7.3
python-memcached: 1.48

Here's my test to make sure the cache is working:

$ manage.py shell
> >>> from django.core.cache import cache
> >>> from time import sleep
> >>> def test():
> ...   cache.set('does_this_work', 'Yes it does!')
> ...   sleep(60 * 4)
> ...   print(cache.get('does_this_work'))
> ...
> >>> test() 

Yes it does!
>

My next step is to figure out what they key for the stored number is, then 
decrypting the value and seeing what happens. If that doesn't turn anything 
up I'll be completely lost.

-- 
You received this message because you are subscribed to the Google Groups 
"Satchmo users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/satchmo-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to