Batch get
Hello, great lib you've got there 😃 Is there a way to do a batch get of cached items? My use case is as follows: I cache items by their id, and lists of ids. I read a list of ids from cache, and then all the items in the list. If I get items one by one I get to many roundtrips really fast.
I'm fairly confident this could be done in Redis with an MGET command and a hydration mapping, but I'm looking for your opinion.
@Sljux glad you are getting some use out of stow. It's still chugging along nicely for my projects as well. I agree that a batch get by list of ids would absolutely be useful. I'm happy to review a PR but don't have the spare cycles to dive into it myself at the moment.
Ideally it would be implemented such that backends that don't have a performant way to implement it could bow-out with an error.