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
Blocking on fetch: rss-funnel is essentially a reverse proxy. There is little we can do to make the upstream respond faster. But we can certainly further avoid blocking the ui and perhaps show a nicer loading animation.
Another source of choppiness is the occasional GC pauses. I need to look into the root cause of this.
Add a debouncing logic for fetching to avoid issuing repeated heavy actions.
Make sure only one fetch request is handled. If a new one comes before the old one finishes, cancel it.
Cache more aggressively, add the cache for 5xx and 4xx errors as well.
The text was updated successfully, but these errors were encountered:
I will consider a dark mode after the UI rewrite. The current UI code was written as a poc without considering much maintainability. I am planning to rewrite it fully before adding any features to it.
Cache more aggressively, add the cache for 5xx and 4xx errors as well.The text was updated successfully, but these errors were encountered: