0
votes
0answers
54 views

Varnish doesn't load shared library for vmod_memcached

I'm trying to run Varnish with Memcached VMOD. When I run the service it throws: root@debian02:~# /usr/local/sbin/varnishd -f /etc/varnish/default.vcl -s malloc,64MB -T 192.168.68.130:2000 -a ...
2
votes
1answer
184 views

Varnish Daemon does not start: Resource temporarily unavailable

I try to setup varnish on my local development system but it terminates seconds after the start with these messages: varnishd -s malloc,1G -T 127.0.0.1:2000 -a 0.0.0.0:81 -F -f /etc/default.vcl 0 ...
-1
votes
2answers
79 views

Avoid invalid initlaliser in inlince c

I have a function prototype which provides me with the result I'm after: #include <stdio.h> #include <string.h> int main () { char * pch; char str[] = " 81.243.230.174, 10.1.0.102"; ...
0
votes
2answers
165 views

inline C & vcl caching

I have the url ...../suggest?callback=jsonp9999999999999&term=something I would like to strip out callback=jsonp999999999999& from the url, cache the rest (...../suggest?term=something) and ...
5
votes
2answers
850 views

Varnish Sort Querystring Parameter

I've got a lot of requests that avoid caching because all of their list permutations are listed, ie: http://.....&var=a,b,c http://.....&var=a,c,b http://.....&var=b,a,c ...
1
vote
4answers
1k views

Lowercase urls in Varnish (inline C)

In Varnish (3.0), urls are treated in a case sensitive way. By that I mean http://test.com/user/a4556 is treated differently from http://test.com/user/A4556. On my web server they're treated as the ...