I try to make a very simple cache usage:

myquery = UserProfile.objects.select_related('user').filter(status__exact=1).values_list('user__username', 'q_points').order_by('-q_points')[:50]
cache.set('test_cache', myquery, 3600)
print cache.get('test_cache')

I get an error:

UserProfile has no field named 'username'

The thing is query is OK and returns valid results.

Debug Toolbar shows that cache value:

([(u'admin', 2L), (user1', 0L), (testuser', 0L)], 3600)

I have no idea what is wrong :/

link|improve this question

53% accept rate
It's impossible to tell for certain what's wrong in this case without seeing the entire UserProfile model and imports for objects that it has relationships to. Please post your models.py, and you'll have a better chance of getting an answer. – Brandon Dec 6 '11 at 5:19
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.