刚开始研究redis。
Redis 是一个单线程进程。
这是否意味着所有操作(例如 hset、hget 等)都以串行方式执行 - 这意味着例如使用以下操作:
hset foo:bar name 'Redis'
hget foo:bar name
hget 只会在 hset 之后执行?
刚开始研究redis。
Redis 是一个单线程进程。
这是否意味着所有操作(例如 hset、hget 等)都以串行方式执行 - 这意味着例如使用以下操作:
hset foo:bar name 'Redis'
hget foo:bar name
hget 只会在 hset 之后执行?