The goal of this Gist is to figure out which items storage technique is a best-practice or good recommendation for taking a list of items and storing them into an asynchronous data storage.
There are various goals to accomplish such as reducing indirection, creating distinct micro-epics (each with their own job), and having an overall simpler time maintaining the code.
I've put together 2 examples of how you might handle storing a list of items with epics. A third example was added to show what one of the versions would look like with the ability to know when those items are done storing.