Christian Haynes
Christian Haynes
Yeah, though it will take a while for the core to sync. You can watch the output of horizon during that time and you'll see a warning each time it...
I am also seeing a malformed header value in a response, specifically the etag header. I was using http://slowglowingyoungkiss.neverssl.com/online as the endpoint to test against. Here's the relevant portion of...
Thought I'd add a note here that it looks like you could use the following library to achieve this today: https://github.com/undef1nd/sfv https://docs.rs/sfv/0.9.2/sfv
Each [CacheManager](https://docs.rs/http-cache/latest/http_cache/trait.CacheManager.html) implementation has a delete method you can use to manually delete a cache record by key. You could also potentially add [cache bust logic](https://docs.rs/http-cache/latest/http_cache/struct.HttpCacheOptions.html#structfield.cache_bust) to return a list...
I would think it should be possible to add such logic in your application
i think so but I would want to make a few changes first, if you'd like to open a PR we can work through that there.
> @06chaynes It seems that `reqwest-middleware` has been released That comment was in regards to updating http, which has already been merged in
A cache manager implementation that uses SQLite for the backend can be created, and would probably be fairly easy to implement. The cache manager handles serialization/deserialization so you would need...
This is on the latest version of http-cache-reqwest correct? Also do you mind sharing the portion where you are constructing the client so I can see how it's been configured?...
By default when a request is made to an endpoint that is not GET or HEAD method it should delete the cache record for that endpoint should it exist, so...