axios-cache-adapter icon indicating copy to clipboard operation
axios-cache-adapter copied to clipboard

Caching adapter for axios. Store request results in a configurable store to prevent unneeded network requests.

Results 63 axios-cache-adapter issues
Sort by recently updated
recently updated
newest added

Hi folks, Is it possible to configure cache-adapter in some way that it just return cache **ONLY** on network erros ? Best regards,

This library was last updated on [March 3, 2021](https://github.com/RasCarlito/axios-cache-adapter/commits/master). There are so many cool features to be done and there are many issues being accumulated...

This breaks current compatibility with the current redis version and causes an unreasonable expectation of future changes in the future Fixes: #263

Ideally I'd want to throttle my requests that are not present in the cache (but serve them immediately if they've already been fetched). I've put below an extract from https://github.com/kuitos/axios-extensions...

Hello, I think I found a bug in the library. When I try to initialize the `RedisStore` I get the following error: ``` TypeError: tiameter must be a valid RedisClient...

The code example [Use redis as cache store](https://github.com/RasCarlito/axios-cache-adapter#use-redis-as-cache-store) when configured correctly * Node: 16.6.1 * axios-cache-adapter: 2.7.3 * redis: 6 * Ubuntu: 20.04 The error stems from this code: https://github.com/RasCarlito/axios-cache-adapter/blob/2d51cee4070ff88f2272533f9593fd41a392f52c/src/redis.js#L7-L17...

- assert ^1.4.1 -> ^2.0.0 - karma ^2.0.0 -> ^6.0.0 - karma-webpack ^2.0.3 -> ^4.0.0 - karma-mocha ^1.3.0 -> 2.0.1 - mocha ^5.0.4 -> 9 - rimraf ^2.6.2 -> ^3.0.2...

I have a WordPress install, in which front end filters are implemented with POST requests with form data. As a user may click the same filters repeatedly, I've tried to...