I am doing mem for a box in which, among other things, I run multiple instances of redis. Therefore, I am thinking about switching to Redis 32bit, as this should save me quite a bit of ram.
from enter link here
Redis compiled with a 32-bit target uses a lot less memory per key since pointers are small, but such an instance will be limited to 4 GB of maximum memory usage. To compile Redis as 32-bit binary use, do 32bit. RDB and AOF files are compatible between 32-bit and 64-bit (and between small and large limbs), so you can switch from 32 to 64 bits or vice versa, without any problems.
As stated in the quote, 4 GB is the maximum for a 32 bit redis instance, but I'm sure I don't. I use multiple instances of redis, each of which remains below the 4 GB limit, but I think this is not a problem (?)
Any other reason, such as performance, maybe I should look for?
source share