telethon-session-redis
telethon-session-redis copied to clipboard
Redis backend for Telethon session storage
``` redis_conn = redis.Redis(host=REDIS_HOST, port=int(REDIS_PORT), password=REDIS_PASS, db=1, decode_responses=True) ``` AttributeError: 'str' object has no attribute 'decode'
See https://github.com/LonamiWebs/Telethon/commit/2a00bcaa1222fe746b4a983388a711269aa38ba9 for changes.
Your Reddis database it a subclass of memory class, but reddis is a database with atleast some persistence. This means that if you change sessions you get leftover with unsollicitated...