Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图找出答案,但我不确定那是 Redis MVCC?Redis 是否允许在写入期间读取?
Redis 是单线程的。所有命令都是原子的。在命令运行时,不能执行其他命令。但是由于一切都在内存中,因此命令(通常)非常快。
所以不,redis 不允许在写入期间读取,但这不是问题。