(Forgive me for designing this ugly logo by myself.)
Redis GUI for Django user
I am using Django to build a web service involving Redis as the cache server.
But after saving the content into Redis, I can't easily read from the Redis string because Django serializes data with pickle
.
So I pop up with an idea to build a Redis GUI for a Django user like me.
mainly with QT Pyside6
+ SQLAlchemy
+ redis-py
- Redis connection management (Add, Delete, Edit)
- Data type support: string, list, hash, set, zset, stream
- Key management (Add, Delete, Rename)
- Content management (Add, Delete, Edit, Copy)
- String content format: raw string, Json, Django pickle
- Redis Connection with SSH
- Redis Connection with SSL
- Redis Connection with Sentinel
- Redis Connection with Cluster
- Build package for Windows and Linux
- Support open multi connections at some time
- Add more basic setting
- GUI upgrade ( maybe add theme? )
- TBD
GUI design inspire by AnotherRedisDesktopManager
LGPL