cachecontrol icon indicating copy to clipboard operation
cachecontrol copied to clipboard

The httplib2 caching algorithms packaged up for use with requests.

Results 77 cachecontrol issues
Sort by recently updated
recently updated
newest added

Is there any documentation on what's the difference between versions 0.12.4 and 0.12.5? I can not seem to find what's new in 0.12.5

The current release notes are 2 years old. It's hard to keep track of what has changed by reading through commit logs. Thanks

We're having a bit of trouble with an heuristic. The fact is, Heuristic classes get the raw response, (a.k.a the `requests.packages.urllib3.response.HTTPResponse`), which does not contain any information about the request...

This is related to #148 - but I would prefer not to necro. I'm seeing this repeatedly when I make the same request over and over again. I'll detail everything...

Didn't investigate the actual cause, so this is debug information. Pip employs requests and requests pulls in CacheControl. It appears that the received response is all in `byte` form and...

There is a draft extension added by facebook called Cache-Control: immutable. If a response is served as immutable then that means it will never ever change no matter what. It...

The camel-case notation suggests that `CacheControl` is a class. Given the docs terminology, according to which `CacheControl` is a "wrapper", I expect that `CacheControl` returns an object that wraps a...

I added a simple fix for #137 and a test that will only run on old versions of requests. Sorry about the revert commits, I can squash locally and re-submit...

Is this a known issue? Any workarounds? ``` > pip freeze | grep -i cache CacheControl==0.11.7 requests-cache==0.4.13 ``` ``` > pip freeze | grep -i requests requests==2.6.0 requests-cache==0.4.13 ``` ```...

It appears that neither `DictCache` nor `FileCache` provide any way to evict entries that aren't being accessed - neither by age nor a max cache size. It's only possible with...