Closed (fixed)
Project:
Advanced Varnish
Version:
4.0.7
Component:
Documentation
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
27 Jun 2023 at 21:42 UTC
Updated:
26 Mar 2026 at 15:15 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #2
sokru commentedI noticed the following error on php logs each time a user tried to log in.
I would say its due to Drupal core 9.2 changes that many other modules have faced. Attached a patch that fixes the error, but I still get the
X-Cacheable:Cookie in the responseheader. Not sure if this still requires adjusting the default.vcl template.Comment #4
shumer commentedBigPipe and Advanced Varnish are fundamentally incompatible: they solve the same problem (personalization on cached pages) with mutually exclusive approaches:
- BigPipe: streams the response in chunks (Transfer-Encoding: chunked), replacing placeholders lazily within a single HTTP response
- Advanced Varnish + ESI: Varnish buffers the entire response for caching, uses separate ESI subrequests for dynamic parts
Varnish cannot simultaneously buffer (required for caching/ESI) and stream (required for BigPipe). This is not a fixable bug, it's an architectural constraint. Initially I was hoping to fix that, but unfortunately that's not a case.
Comment #7
shumer commented