axios-extensions
axios-extensions copied to clipboard
π± axios extensions lib, including throttle, cache, retry features etc...
POST requests are not cached. It is requested for every request. Is there some limitation or Do I need to configure it differently?
https://github.com/isaacs/node-lru-cache/blob/main/CHANGELOG.md#v7---2022-02
Once request is cached using adapters, is there a way to check if request is cached using axios response?
The bug is in this file, but this row is included in the other adapters too: **retryAdapterEnhancer.js:33** ```js if (process.env.LOGGER_LEVEL === 'info') { console.info("[axios-extensions] request start retrying --> url: "...
Suppose you cache a GET request to `/foo/123`. Can the adapter be smart enough to invalidate this cache entry when it detects a PUT/PATCH/DELETE request to the same URL? A...
I have cached the request. I want to determine the network request time of that request whenever it gets served from cache.
Thank you for plugin! It works great but is it possible to save cache to localstorage? so after refresh of page cache stays.
version 3.1.3 bumped to [email protected] which is not es5 compatible https://github.com/kuitos/axios-extensions/commit/2b63345e52e5d0c33e1a0705c947c3cd56f5cbcb It might even be that lru-cache is purely meant for node: https://github.com/kuitos/axios-extensions/commit/2b63345e52e5d0c33e1a0705c947c3cd56f5cbcb If thatβs the case, I propose locking...
Hello, I am requesting a feature / asking if there is already a way to determine if my axios request's response is coming from the cache or is indeed a...
Is there any way for resetting all cached items? For example when user logout, i wanna reset cache.