update readme

This commit is contained in:
LingZhaoHui 2023-05-28 23:29:05 +08:00
parent 67a07108c9
commit 125ce91aa5
Signed by: zeekling
GPG Key ID: D96E4E75267CA2CC

View File

@ -1,3 +1,17 @@
# redis-auth
redis 第三方认证模块
The Redis third-party authentication module has the following issues due to the fact that open-source Redis authentication reads authentication information from files:
- From a security perspective, saving passwords in configuration files is not secure and cannot meet enterprise level security requirements.
- When in cluster mode, the permission information in each instance is separate and it is not easy to maintain consistency.
# Roadmap
- [ ] Support synchronizing user permission information from the postgreSQL database.
- [ ] Support synchronizing permission information from HTTP requests.
# Link
- [Redis](https://github.com/redis/redis): Redis is an in-memory database that persists on disk.
- [libpqxx](https://github.com/jtv/libpqxx): The C++ API to the PostgreSQL database management system.