-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
Relocate the current Redis session management implementation from the main candango/httpok project into a dedicated repository. This change is intended to remove the Redis dependency from the core project, keeping candango/httpok lightweight and allowing users to opt-in to Redis session support only if needed.
Tasks
- Identify all code and dependencies related to Redis session management in
candango/httpok. - Create a new repository (e.g.
candango/redis-sessionor similar). - Move the Redis session code and tests to the new repository.
- Update import paths, documentation, and package names as appropriate.
- Remove Redis dependencies and references from the
candango/httpokproject. - Add notes to the
candango/httpokREADME and documentation indicating where Redis session support can be found and how to integrate it.
Acceptance Criteria
- No Redis dependencies or session-related code remains in the main
candango/httpokrepository. - The new Redis session repository contains all relevant code and passes tests.
- Documentation in both repositories is updated to reflect the migration and integration steps.
candango/httpokbuilds and operates successfully without Redis session support.