guillaume quintard
guillaume quintard
Hi, I'm shopping around for a fastcgi crate and after reading the code, I had a couple of questions, if you have time to look at them: - it looks...
TL;DR: in `master`, even though `http_conn` is private, backends are expected to know about it. [http_conn](https://github.com/varnishcache/varnish-cache/blob/master/bin/varnishd/cache/cache_varnishd.h#L95) is located in a file saying [Stuff that should *never* be exposed to a...
This has been tested on `master` on an up-to-date Arch linux. It's also present on `6.4` `man vcl` [says](https://github.com/varnishcache/varnish-cache/blob/master/doc/sphinx/reference/vcl.rst#versioning) (emphasis mine): > Multiple versions of the VCL syntax can coexist...
New varnish versions allows vmods to create custom counters and it's mandatory to normalize their names to avoid scaring the scraper. This commit doesn't prevent collisions but there's only so...
observed while trying to package `7.2` on `alpine`, apparently due to a `awk` incompatibility: ``` ** top === shell { **** top shell_cmd|exec 2>&1 ; **** top shell_cmd|\tvarnishstatdiff stat1.txt stat2.txt...
**Description** On `restart`, it looks like the permission of `tmpfs` volumes are changed. **Steps to reproduce the issue:** With this `docker-compose.yaml`: ``` yaml version: '3.9' services: varnish: image: "varnish:7.1" command:...
### Description (*) Varnish already has [default compression handling](https://varnish-cache.org/docs/trunk/users-guide/compression.html#default-behaviour). This code only kicks into gear in case of a `miss` or a `pass`, and in those cases, the backend should...
Detecting if the response is a hit usingthe `x-varnish` header is flaky and notably doesn't work in a multi-tier setup. On top of this, HIT/MISS is a false dichotomy (https://info.varnish-software.com/blog/using-obj-hits)...
Hi! It looks like the `elastisearch` container reboots in a loop when I run ``` git checkout v3.2.2 make setup sudo sysctl -w vm.max_map_count=262144 docker compose up ``` I'm attaching...