0
0
Redisquery~10 mins

Eviction policies (LRU, LFU, random) in Redis - Step-by-Step Execution

Choose your learning style9 modes available
Concept Flow - Eviction policies (LRU, LFU, random)
Cache Full?
Yes
Select Eviction Policy
LRU
Evict Key
Add New Key
When the cache is full, Redis chooses a key to remove based on the selected eviction policy (LRU, LFU, or Random) before adding a new key.
Execution Sample
Redis
SET key1 val1
SET key2 val2
... (cache full)
GET key1
SET key3 val3
Simulates adding keys until cache is full, accessing keys to update usage, then adding a new key causing eviction.
Execution Table
StepActionCache StateEviction PolicyEvicted KeyReason
1SET key1 val1{key1}LRUNoneCache not full
2SET key2 val2{key1, key2}LRUNoneCache not full
3GET key1{key1 (recent), key2}LRUNoneAccess updates usage
4SET key3 val3{key1, key3}LRUkey2Cache full, evict least recently used key2
5SET key4 val4{key3, key4}LFUkey1Cache full, evict least frequently used key1
6SET key5 val5{key4, key5}Randomkey3Cache full, evict random key3
💡 Eviction occurs only when cache is full; keys are evicted based on policy before adding new keys.
Variable Tracker
VariableStartAfter 1After 2After 3After 4After 5After 6
Cache Keys{}{key1}{key1, key2}{key1 (recent), key2}{key1, key3}{key3, key4}{key4, key5}
Eviction PolicyLRULRULRULRULFURandomRandom
Evicted KeyNoneNoneNoneNonekey2key1key3
Key Moments - 3 Insights
Why does 'key2' get evicted at step 4 instead of 'key1'?
Because at step 3, 'key1' was accessed making it the most recently used, so 'key2' is the least recently used and gets evicted as shown in execution_table row 4.
How does the LFU policy decide which key to evict at step 5?
LFU evicts the key with the lowest usage count. Since 'key1' was used less frequently than 'key4', it is evicted as shown in execution_table row 5.
What happens when the Random policy is used at step 6?
A random key is chosen to be evicted without considering usage. Here, 'key3' was randomly selected and evicted as shown in execution_table row 6.
Visual Quiz - 3 Questions
Test your understanding
Look at the execution_table at step 4. Which key was evicted and why?
Akey2 because it was least recently used
Bkey1 because it was least recently used
Ckey3 because it was least frequently used
DNo key was evicted
💡 Hint
Check the 'Evicted Key' and 'Reason' columns at step 4 in execution_table.
According to variable_tracker, what is the cache state after step 5?
A{key4, key5}
B{key1, key3}
C{key3, key4}
D{key1, key4}
💡 Hint
Look at the 'Cache Keys' row under 'After 5' in variable_tracker.
If the eviction policy at step 6 was LRU instead of Random, which key would likely be evicted?
Akey5
Bkey3
Ckey4
Dkey1
💡 Hint
Refer to the usage order in execution_table and variable_tracker before step 6.
Concept Snapshot
Eviction policies remove keys when cache is full.
LRU evicts least recently used key.
LFU evicts least frequently used key.
Random evicts any key randomly.
Policy choice affects cache behavior and performance.
Full Transcript
This visual execution shows how Redis eviction policies work when the cache is full. First, keys are added until the cache reaches capacity. When a new key is added beyond capacity, Redis evicts one key based on the selected policy. LRU removes the least recently used key, LFU removes the least frequently used key, and Random removes a random key. The execution table tracks each step, showing cache state, eviction decisions, and reasons. The variable tracker records how cache keys and eviction policy change over time. Key moments clarify common confusions about eviction choices. The quiz tests understanding by referencing specific steps and states. This helps beginners see exactly how eviction policies affect cache contents step-by-step.