Complete the code to increment a counter named 'page_views' by 1.
INCR [1]The INCR command increases the value of the given key by 1. Here, the counter key is 'page_views'.
Complete the code to get the current value of the counter 'user_logins'.
GET [1]The GET command retrieves the current value stored at the key. Here, the key is 'user_logins'.
Fix the error in the code to decrement the counter 'active_sessions' by 1.
DECR [1]The DECR command decreases the value of the given key by 1. The key must be exactly 'active_sessions'.
Fill both blanks to set the counter 'error_count' to 0 and then increment it by 1.
SET [1] 0 INCR [2]
Both commands must use the exact key name 'error_count' to reset and then increment the counter.
Fill all three blanks to atomically increment 'page_hits' by 1, set an expiration of 60 seconds, and then get its value.
MULTI INCR [1] EXPIRE [2] [3] EXEC
All commands must use the exact key 'page_hits'. The expiration time is set to 60 seconds.