What is the purpose of the 'RPUSH' command in Redis?
Remove an element from the tail of a list
Remove an element from the head of a list
Add an element to the tail of a list
Add an element to the head of a list
Which command is used to download and install Redis on a Debian-based Linux system?
wget redis.com
yum install redis
brew install redis
apt-get install redis
Which Redis configuration setting controls the interval (in seconds) for saving RDB snapshots?
rdb_save_seconds
snapshot_frequency
save_interval
rdb_snapshot_time
What is a potential drawback of using only RDB snapshots for persistence in Redis?
Slow write speeds
Complex configuration
Potential data loss between snapshots
High memory usage
You need to store a leaderboard with scores for players. Which Redis data type is most appropriate?
Sorted Set
Set
Hash
List
What does AOF stand for in the context of Redis persistence?
Asynchronous Operation Format
Automatic Output Function
Append-Only File
Advanced Object Formatting
What is the result of executing 'INCR counter' if the 'counter' key does not exist in Redis?
Error: Key not found
0
1
Null
What file extension is typically used for Redis's Append-Only File?
.aof
.log
.rdb
.redis
You set a key with EXPIRE mykey 10. What does the value '10' represent in this command?
EXPIRE mykey 10
Milliseconds
Hours
Seconds
Minutes
Which of these is NOT a common use case for Redis?
Session management
Storing large blobs of unstructured data
Leaderboards and real-time analytics
Caching