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 几个月了,但现在 redis 哈希键从服务器自动删除。我正在使用主从架构,我的网站也遇到每小时用户不足的情况。任何人都可以帮助我如何解决这个问题.....提前谢谢..
确保您使用的是正确的 max-memorypolicy (您可能不想要 allkeys-lru 因为 redis 将使最少访问的密钥过期,无论它们是否过期)。
您还应该确保 redis 有足够的内存来存储您不想过期或被 redis 驱逐的密钥。(redis maxmemory 配置与系统内存相比)
如果您使用 no-eviction 策略,请确保 redis 永远不会耗尽内存。