Convert to a caching queryset
(self)
| 160 | """A non caching QuerySet""" |
| 161 | |
| 162 | def cache(self): |
| 163 | """Convert to a caching queryset""" |
| 164 | return self._clone_into(QuerySet(self._document, self._collection)) |
| 165 | |
| 166 | def __repr__(self): |
| 167 | """Provides the string representation of the QuerySet""" |