I have a single program that `SET` hundreds of keys each second. Is calling `rdx.set(key, value)` for each key OK or should I use the [`MULTI`](https://redis.io/commands/multi) Redis command? In the background, is redox bulking the commands?
I have a single program that
SEThundreds of keys each second.Is calling
rdx.set(key, value)for each key OK or should I use theMULTIRedis command?In the background, is redox bulking the commands?