如果服务器挂了或重启了,缓存丢失了,有什么措施吗?
数据已经持久化
了,
类似用redis实现关注功能
, 如果缓存丢失,就会影响程序应用逻辑
天蓬老师2017-04-24 09:15:45
Mainly depends on whether you use redis as a cache or nosql. If it is a cache, it does not matter if you lose it. Just restore and rebuild from somewhere else. If it is nosql, redis has snapshot and aof mechanisms to ensure data persistence. of
PHP中文网2017-04-24 09:15:45
If it is a cache, then the application logic will not be affected if the cache is lost.
伊谢尔伦2017-04-24 09:15:45
Since it is a cache, my understanding is that it doesn’t matter if it is lost.
If it is some user login data, session
etc., then the user can only be asked to log in again.
If it is persisted, you can consider recovering from persistence
高洛峰2017-04-24 09:15:45
It doesn’t matter if the cache is lost but the data has been persisted. In the worst case, you can just rebuild the cache. If it is redis, it can be restored from an aof file. As a cache, it can also be restored using an rdb file. The rdb restore should be faster.
高洛峰2017-04-24 09:15:45
If it hangs, just restart it. The cache can be hanged. It’s just that the system is under greater pressure.
大家讲道理2017-04-24 09:15:45
Since it has been persisted, there is nothing to worry about. The redis persistence should be an aof or rdb file. You can just restart and restore it. As for the specific earphone operation, there are detailed articles on the Internet for reference.
伊谢尔伦2017-04-24 09:15:45
Generally, programs with good design will automatically start the recache logic