Should I use redis to store a large number of binary files? [closed]
I would not use Redis for such a task. Other products will be a better fit IMO. Redis is an in-memory data store. If you want to store 10-20 TB of data, you will need 10-20 TB of RAM, which is expensive. Furthermore, the memory allocator is optimized for small objects, not big ones. You … Read more