I am trying to understand what NoSQL storage would work best if I need to store images (list size in 6 digits, each image of size 2mb) in-memory for process pipelining ? To my understanding I have considered key-value store like Redis, or should I go for document based storage like CouchDB ?
Thanks.