Greetings,
A few quick things (django 1.2.3, python 2.6, memcached).
I have a function where I first do a somewhat expensive query, when I do this query I do an oder_by. I then update some values which may change the order of the results. I then put all of the values in the cache.
Then in another function I get the cache and I want to resort the results so that they are again in order.
so this would be something like.
function 1():
mylist = myevent.people.order_by('-score')
....do up date....
cache.set(cache_key,mylist)
function(2):
my_cache_list = cache.get(cache_key)
newlist = sorted(my_cache_list,key=operator.attrgetter('score'), reverse=True )
based on other posts I would think this should work but I get a typeerror saying that my_cache_list is unsubsriptable.
Anyone have any ideas? Im probably doing something stupid....
thanks.
NOTE: Update made change operator.attrgetter for operator.itemgetter removed error! This code above does work. The problem was in using the operator.itemgetter.
my_cache_listequals to when the error appears? May be it'sNone, because there is no cached value? And it's better to storelistin cache, not queryset. – DrTyrsa May 23 '11 at 7:43