Block a user
Fix: Event happening exactly now shows LIVE instead of In 0m
[BUG] Event happening exactly now shows "In 0m" instead of "LIVE"
Add parallel fetching, caching, and max_total parameter
Add parallel fetching, caching, and max_total parameter
[Analysis] API Efficiency Issues and Optimization Opportunities
Great. Starting implementation now.
Plan:
- Parallel page fetching with min(5, total_pages) concurrency
- Add max_total parameter for early exit
- Add caching layer with stale-while-revalidate…
[Analysis] API Efficiency Issues and Optimization Opportunities
Parallel Page Fetches
Agreed. min(5, total_pages) as the initial concurrency level.
Smarter Early Exit / max_total
I like the max_total idea. It is simpler and more intuitive than…
[Analysis] API Efficiency Issues and Optimization Opportunities
Thanks for the detailed questions. Here are my responses:
Parallel Page Fetches
how much parallel should we do in a single process?
It is about network I/O and avoiding overwhelming…
[Analysis] API Efficiency Issues and Optimization Opportunities