Istnieją różne zachowania, których możesz nakazać redisowi przestrzegać, gdy zapełni swoją pamięć.
# volatile-lru -> remove the key with an expire set using an LRU algorithm
# allkeys-lru -> remove any key accordingly to the LRU algorithm
# volatile-random -> remove a random key with an expire set
# allkeys->random -> remove a random key, any key
# volatile-ttl -> remove the key with the nearest expire time (minor TTL)
# noeviction -> don't expire at all, just return an error on write operations
wartość domyślna to
# maxmemory-policy volatile-lru
Być może najlepszą opcją jest „volatile-ttl” i upewnij się, że wszystkie Twoje pamięci podręczne zawierają opcje :expires_in.
Nie jestem ekspertem i nie robiłem tego. Jest to oparte tylko na moim obecnym zrozumieniu redis i szyn.