Questions tagged [varnish-vcl]

VCL, also known as Varnish Configuration Language, is a specialized language specifically designed for creating request handling and caching policies within the Varnish HTTP accelerator. It's important not to mix this up with the Visual Component Library (VCL) utilized in Delphi and C++ Builder. For inquiries related to those products, make sure to use the "vcl" tag.

Utilizing Varnish Cache to optimize AJAX GET requests

I am currently dealing with an AJAX request that is running on a server equipped with Varnish. The specific request is structured as follows: (function() { $("#name").autocomplete({ minLength:3, //minimum length of characters for t ...

Varnish is preventing HTML redirects from being executed properly

I've encountered an issue with my setup involving Varnish 3.0 on Ubuntu 11 and ExpressJS v2.5.8 (running on Node.js 0.6). When I try to do a redirect using Express, it works fine without Varnish in between. However, when Varnish is added into the mix, ...