-
Notifications
You must be signed in to change notification settings - Fork 23
/
redis_util.py
30 lines (26 loc) · 1.1 KB
/
redis_util.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import redis
import zlib
import pickle
import os
from utils import get_from_env_or_config
# Connect to Redis
REDIS_HOST = os.environ.get('REDIS_HOST', 'localhost')
REDIS_PORT = os.environ.get('REDIS_PORT', 6379)
REDIS_DB = os.environ.get('REDIS_DB', 0)
REDIS_TTL = get_from_env_or_config('redis', 'ttl') # 12 hours (TTL in seconds)
redis_client = redis.Redis(host=REDIS_HOST, port=int(REDIS_PORT), db=int(REDIS_DB))
def store_messages_in_redis(key, message, ttl=int(REDIS_TTL)):
"""Compresses a message using gzip and stores it in Redis."""
redis_key = f"msg_{key}"
serialized_json = pickle.dumps(message)
compressed_data = zlib.compress(serialized_json)
redis_client.setex(redis_key, ttl, compressed_data)
def read_messages_from_redis(key):
"""Retrieves a compressed message from Redis and decompresses it."""
redis_key = f"msg_{key}"
compressed_data = redis_client.get(redis_key)
if compressed_data:
decompressed_data = zlib.decompress(compressed_data)
return pickle.loads(decompressed_data)
else:
return [] # Handle the case where the key doesn't exis