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 :/