问题
I'm trying to use Redis' set
command to implement a simplest distributed lock component, but I can't find any exact basis about atomicity through the official document, is Redis' SET key value [EX seconds] [PX milliseconds] [NX|XX]
command an atomic operation?
回答1:
Yes. The core is single threaded, so nothing will run until the SET
has completed; that makes SET {key} {value} EX {expiry} NX
ideal for simple locking.
来源:https://stackoverflow.com/questions/43259635/is-redis-set-command-an-atomic-operation