If two Redis clients issue ZADD or ZSCORE commands concurrently, will it have race condition and mess up the set value? If it is not thread-safe, then I will need to protect the commands with a lock, right?
I read the ZSET API reference. Maybe I missed it, but I saw nowhere it mentions the thread-safety of ZSET commands.