You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
API keys are never stored in plain text. We store only the SHA-256 hash of the key, ensuring that even if the database is compromised, the actual keys remain secure.
205
+
206
+
### 2. Rate Limiting Strategy
207
+
We implement a **Sliding Window Log** algorithm using Redis Sorted Sets. This provides precise rate limiting without the "burst" issues found in Fixed Window counters.
208
+
209
+
### 3. Multi-layer Caching
210
+
-**Browser/CDN**: Controlled via Cache-Control headers.
0 commit comments