I have a database cache for my django application.
I can do the following to get multiple cache rows from the table:
cache.get_many(cache_keys_list)
This is a sequential query retrieving one record at a time:
Is it possible to have a queryset method for a database cache like would for any other model object to retrieve multiple values?
