{student: "marks"}
).SET key value
SET Meta 300
→ Stores "Meta" with value "300".GET key
GET Meta
→ Returns "300".nil
if key is missing.SETEX key seconds value
SETEX Microsoft 40 145
→ Key expires after 40 seconds.SET key value EX seconds
.PSETEX key milliseconds value
PSETEX Amazon 20000 245
→ Key expires after 20,000 ms.SET key value PX milliseconds
.SETNX key value
SETNX Meta 240
→ Fails if "Meta" already exists.SET key value NX
.STRLEN key
STRLEN Meta
→ Returns length of the value (e.g., 3 for "300").MSET key1 value1 key2 value2 ...
MSET Google 450 Fiserv 230
→ Sets multiple keys at once.MGET key1 key2 ...
MGET Google Fiserv
→ Returns values for both keys.SET Meta 300
GET Meta
SETEX Microsoft 40 145
PSETEX Amazon 2000 245
SETNX Meta 240
(fails if Meta exists)STRLEN Meta
MSET Google 450 Fiserv 230
MGET Google Fiserv
KEYS *
INCR key
1
if the key doesn’t exist.ERR value is not an integer
for non-integer values.INCRBY key count
INCRBY Oracle 5
adds 5 to the key's value.INCRBYFLOAT key floatValue
INCRBYFLOAT Oracle 3.5
adds 3.5 to the value.SET Apple 300
→ Sets Apple’s value to 300.GET Apple
→ Returns 300.INCR Apple
→ Value becomes 301.INCRBY Apple 5
→ Value becomes 306.INCRBYFLOAT Apple 3.4
→ Value becomes 309.4.KEYS *
→ Lists all keys (e.g., Apple).DECR key
-1
if the key doesn’t exist.DECRBY key count
DECRBY Oracle 5
subtracts 5 from the value.DEL key
DEL Oracle
removes the Oracle key.FLUSHALL
APPEND key stringToBeAppended
APPEND msg "world"
appends "world" to the value of "msg".SET google 250
→ Sets google’s value to 250.DECR google
→ Value becomes 249.DECRBY google 5
→ Value becomes 244.DEL google
→ Deletes the key.FLUSHALL
→ Clears all keys.LPUSH key value1 value2 ...
LPUSH cars toyota ford honda
LRANGE key start end
LRANGE cars 0 -1
→ Returns all elements.LRANGE cars 0 1
→ Returns first two elements.LPOP key
LPOP cars
, list [honda, ford, toyota] becomes [ford, toyota].RPUSH key value1 value2 ...
RPUSH cars mercedes bmw
RPOP key
RPOP cars
, list [toyota, ford, mercedes, bmw] becomes [toyota, ford, mercedes].DEL key
DEL cars
→ Removes the "cars" list.LPUSH cars toyota ford
→ List: [ford, toyota]RPUSH cars honda
→ List: [ford, toyota, honda]LPOP cars
→ Removes "ford"; List: [toyota, honda]RPOP cars
→ Removes "honda"; List: [toyota]LLEN key
LPUSH cars bmw audi honda tesla
→ Creates list ["tesla", "honda", "audi", "bmw"]LLEN cars
→ Returns 4LINDEX key index
LINDEX cars 1
→ Returns "honda"LSET key index value
LSET cars 0 maruti
→ Updates the list to ["maruti", "honda", "audi", "bmw"]LPUSHX key value
LPUSHX cars toyota
→ Adds "toyota" to the head → ["toyota", "maruti", "honda", "audi", "bmw"]LPUSHX bikes ducati
→ No action (if "bikes" list doesn’t exist).LINSERT key BEFORE|AFTER pivot value
LINSERT cars BEFORE audi mercedes
→ Inserts "mercedes" before "audi"SADD [key] [value]
SADD fruits apple mango
→ adds "apple" and "mango".0
if element already exists.SMEMBERS [key]
SMEMBERS fruits
→ returns all elements (e.g., apple, mango).SISMEMBER [key] [value]
SISMEMBER fruits apple
→ returns 1
(exists) or 0
(doesn’t exist).SCARD [key]
SCARD fruits
→ returns total elements (e.g., 2).SDIFF [key1] [key2]
SDIFF set1 set2
→ returns elements in set1
not in set2
.SADD set1 apple banana orange
→ adds 3 elements.SMEMBERS set1
→ returns [apple, banana, orange].SADD set1 apple
→ returns 0
(duplicate).SDIFF set1 set2
→ finds unique elements in set1
.SADD
ignores duplicates (returns 0
).SMEMBERS
returns empty list if key doesn’t exist.SDIFF
treats missing keys as empty sets.SUNION key1 key2 ...
SADD colors1 red blue green
,
SADD colors2 yellow blue
SUNION colors1 colors2
→ Returns red, blue, green, yellow
SREM key value1 value2 ...
SREM colors1 red green
SMEMBERS colors1
→ Returns blue
SPOP key [count]
SPOP colors2 1
→ Returns yellow
SMEMBERS colors2
→ blue
SMOVE source_set dest_set member
SMOVE colors1 colors2 blue
colors1
: Emptycolors2
: blue
SADD berries strawberry blueberry
,
SADD dry_fruits almond
SUNION berries dry_fruits
→ strawberry, blueberry, almond
SREM berries strawberry
→ Removes 1 itemSPOP berries 1
→ Returns blueberry
ZADD key score value ...
ZADD products 150 Laptop 80 Mouse 200 Monitor
ZRANGE key start end
ZRANGE products 0 -1
→ Returns all elements: ["Mouse", "Laptop", "Monitor"].ZRANGEBYSCORE key min max
ZRANGEBYSCORE products 100 250
→ Returns ["Laptop", "Monitor"].ZCARD key
ZCARD products
→ Returns 3.ZCOUNT key min max
ZCOUNT products 0 100
→ Returns 1 ("Mouse").-inf
and +inf
for unbounded score ranges.ZREM key member
ZREM players Alice
→ Removes "Alice" from the "players" set.
ZRANK key member
ZRANK players Bob
→ Returns rank of "Bob" based on ascending scores.
ZREVRANK key member
ZREVRANK players Bob
→ Returns rank of "Bob" in reverse order (highest score first).
ZSCORE key member
ZSCORE players Bob
→ Returns the score of "Bob".
ZADD players 150 Alice 90 Bob 80 Charlie
→ Creates a sorted set "players" with members and scores.ZREM players Alice
→ Removes "Alice" from the set.ZRANK players Bob
→ Returns 1 (remaining members: Charlie=80, Bob=90).ZREVRANK players Bob
→ Returns 0 (reverse order: Bob=90, Charlie=80).ZSCORE players Bob
→ Returns 90.{key → {field: value}}
HSET {key} {field} {value}
(Modern replacement for deprecated HMSET)HSET user:1001 name "Alice" email "alice@example.com"
HGETALL {key}
→ Returns all field-value pairsHGETALL user:1001Output:
name → "Alice", email → "alice@example.com"
HGET {key} {field}
→ Returns specific field valueHGET user:1001 emailOutput:
"alice@example.com"
HEXISTS {key} {field}
→ Returns 1 (exists) or 0 (not found)HEXISTS user:1001 ageOutput:
0
HDEL {key} {field}
→ Deletes specified fieldHDEL user:1001 emailOutput: Removes email field from user:1001
HSETNX {key} {field} {value}
→ Sets value only if field doesn't existHSETNX user:1001 age 30Output: Adds age field since it doesn't exist
HSET
instead of deprecated HMSET
in Redis ≥4.0.0SUBSCRIBE <channel>
SUBSCRIBE order_updates
PUBLISH <channel> <message>
PUBLISH order_updates "Order #1234 confirmed"
UNSUBSCRIBE <channel>
UNSUBSCRIBE order_updates
notifications
get alerts when a message is published.PSUBSCRIBE <pattern>
PSUBSCRIBE logs_*
matches logs_errors
, logs_info
, etc.PUNSUBSCRIBE <pattern>
FLUSHALL
).config get requirepass
config set requirepass your_password
AUTH your_password
after connecting.NOAUTH
error on data access attempts.FLUSHALL
).redis.conf
:
rename-command FLUSHALL PURGEALL
redis-server.exe redis.conf
FLUSHALL
) becomes unavailable.PURGEALL
) can execute it.FLUSHALL
to a secret name in config file.unknown command
error for restricted commands.import redis def main(): # Connect to the Redis server client = redis.StrictRedis(host='localhost', port=6379, decode_responses=True, password='your_redis_password') # String operations print("\n--- String Operations ---") client.set("string_key", "Hello, Redis!") print("Inserted string_key:", client.get("string_key")) client.set("string_key", "Updated Redis!") print("Updated string_key:", client.get("string_key")) client.delete("string_key") print("Deleted string_key:", client.get("string_key")) # Should print None # Hash operations print("\n--- Hash Operations ---") client.hset("hash_key", mapping={"field1": "value1", "field2": "value2"}) print("Inserted hash_key:", client.hgetall("hash_key")) client.hset("hash_key", "field1", "new_value1") print("Updated hash_key field1:", client.hget("hash_key", "field1")) client.hdel("hash_key", "field2") print("Deleted field2 from hash_key:", client.hgetall("hash_key")) # List operations print("\n--- List Operations ---") client.rpush("list_key", "item1", "item2", "item3") print("Inserted list_key:", client.lrange("list_key", 0, -1)) client.lset("list_key", 1, "new_item2") print("Updated list_key index 1:", client.lrange("list_key", 0, -1)) client.lpop("list_key") print("Deleted first element from list_key:", client.lrange("list_key", 0, -1)) # Set operations print("\n--- Set Operations ---") client.sadd("set_key", "item1", "item2", "item3") print("Inserted set_key:", client.smembers("set_key")) client.srem("set_key", "item2") print("Deleted item2 from set_key:", client.smembers("set_key")) # Sorted Set operations print("\n--- Sorted Set Operations ---") client.zadd("sorted_set_key", {"item1": 1, "item2": 2, "item3": 3}) print("Inserted sorted_set_key:", client.zrange("sorted_set_key", 0, -1, withscores=True)) client.zincrby("sorted_set_key", 2, "item1") print("Updated score of item1 in sorted_set_key:", client.zrange("sorted_set_key", 0, -1, withscores=True)) client.zrem("sorted_set_key", "item2") print("Deleted item2 from sorted_set_key:", client.zrange("sorted_set_key", 0, -1, withscores=True)) # Redis Pub/Sub operations print("\n--- Pub/Sub Operations ---") def publisher(): pub_client = redis.StrictRedis(host='localhost', port=6379, decode_responses=True, password='your_redis_password') pub_client.publish("my_channel", "Hello, Subscribers!") def subscriber(): sub_client = redis.StrictRedis(host='localhost', port=6379, decode_responses=True, password='your_redis_password') pubsub = sub_client.pubsub() pubsub.subscribe("my_channel") print("Subscribed to my_channel") for message in pubsub.listen(): if message['type'] == 'message': print("Received message:", message['data']) break # Uncomment the following lines to test Pub/Sub # import threading # threading.Thread(target=subscriber).start() # publisher() # Redis Security Best Practices print("\n--- Redis Security Best Practices ---") print("1. Use strong passwords for Redis authentication.") print("2. Enable Redis SSL for secure communication.") print("3. Use firewalls to restrict access to Redis ports.") print("4. Bind Redis to localhost or specific IP addresses.") print("5. Disable dangerous commands using the Redis configuration file (e.g., rename-command).") if __name__ == "__main__": main()