I am trying to optimise my colleagues django haystack search function, there is a queryset.load_all() which loads 200 model instances, now, given I cannot cache the result from load_all(), is there a way to cache those individual model instance so load_all() will read from memcache to get those model instances?
code looks like this
result_set = query_set.load_all()[:self.max_results]
