cache-handler
cache-handler copied to clipboard
Distributed HTTP caching module for Caddy
Running into this error when the cache size gets too large. Is there a way to change this limit? I have tried the following. ```Caddy cache { badger { configuration...
I have some endpoints that will serve a mix of cacheable and uncacheable content. I don't want to run into any performance or security issues caused by request coalescing. How...
caddy 2.8.4 cache-handler v0.13.0 ``` DBG | ts=1718029982.576744 logger=http.handlers.cache msg=Response cache-control &{MustRevalidate:false NoCache:map[] NoCachePresent:false NoStore:false NoTransform:false Public:true Private:map[] PrivatePresent:false ProxyRevalidate:false MaxAge:2592000 SMaxAge:2592000 Immutable:false StaleIfError:-1 StaleWhileRevalidate:-1 Extensions:[]} DBG | ts=1718029982.5769842 logger=http.handlers.cache...
Hi, Thanks for your work! Not an issue/bug, but I'm playing around with the cache handler module and figured it would be really great (for my use case) to set...
With Caddyfile ``` { admin off auto_https off cache servers { metrics } } :80 { request_body 1GB encode zstd gzip cache reverse_proxy redmine:3000 handle_errors { respond "{err.status_code} {err.status_text}" }...
It is recording 50MB large value to Redis and that's taking a significant toll on the CPU.
In my testing I've found that `set-cookie` headers are getting cached by caddy. This is obviously a big problem for us and I've not been able to see any cache-handler...
**Caddy version**: 2.9.1 **The Problem:** When using the cache directive, the throughput of the given config block experiences a dramatic slowdown. On my system with 7950X testing using AB like...
I'm trying to translate this nginx config to Caddy: https://github.com/grishka/Smithereen/blob/4dcad9dd968b2ae6be04281d6a9ca72d13d4cfc8/examples/nginx.conf This *works* but doesn't do so optimally because it would hit imgproxy every time a client requests a resized image:...
Hi, I'm trying to use Caddy to cache `.m3u8` files when reverse proxying to an upstream server. I’m using the `cache` directive and set up my Caddyfile as follows: ```...