When I have look at the Redis documentation, I learn that we can use lists for strings (https://redis.io/docs/data-types/lists/).
However, for my use case it would be advantageous, if I could have a list with binary array values stored instead.
I have a few questions regarding that:
I would suggest against that setup, if possible. Instead, I would:
SET
command, naming each key with a hash of the binary data (for example, file:<CRC32 hash value>
);Key values have a limit of 512MB; lists can have up to 2^32-1 items.