Skip to content

Latest commit

 

History

History
26 lines (23 loc) · 1 KB

TODO.md

File metadata and controls

26 lines (23 loc) · 1 KB

v1

  • Cache GET Requests & Invalidate it after a certain period.
  • Implement Failover Strategies (Discard Unavailable Servers)
  • Implement Rate Limiting
  • Add Logging for each Request & Response
  • Add gzip Compression for each response
  • Document the code
  • Write Tests
  • Add README.md

v2

  • Implement Least Connections for load balancing
  • Implement Client Auth & Sticky Sessions
  • Role based Rate Limiting (Free vs Premium Users)
    • Premium Users have a higher rate limit than Free Users
  • Detailed Monitoring & Metrics
    • Implement detailed logging of metrics, including server response times, cache hit ratios, traffic distribution, and load balancer health.
  • Admin Dashboard
    • visualize and manage server status, request logs, rate limits, and traffic distribution.
  • Add Support for Websocket Servers
  • Config to change between HTTP & Websocket Load Balancer
  • Document the code
  • Write Tests
  • Refactor & Improve the Code