GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
VMOD_VAR(3) VMOD_VAR(3)

vmod_var - Variable support for Varnish VCL

import var [as name] [from "path"]
VOID set(STRING key, STRING value)
STRING get(STRING)
VOID global_set(STRING, STRING)
STRING global_get(STRING)
VOID set_int(STRING key, INT value)
INT get_int(STRING key)
VOID set_string(STRING key, STRING value)
STRING get_string(STRING key)
VOID set_real(STRING key, REAL value)
REAL get_real(STRING key)
VOID set_duration(STRING key, DURATION value)
DURATION get_duration(STRING key)
VOID set_ip(STRING key, IP value)
IP get_ip(STRING key)
VOID set_backend(STRING key, BACKEND value)
BACKEND get_backend(STRING key)
VOID clear()


This VMOD implements basic variable support in VCL.

It supports strings, integers, real numbers, durations, IP addresses and backends. There are methods to get and set each data type.

Global variables have a lifespan that extends across requests and VCLs, for as long as the vmod is loaded. Global variables only support strings.

The remaining functions have PRIV_TASK lifespan and are local to a single request or backend request.

Example:

vcl 4.0;
import var;
backend default { .host = "192.0.2.11"; .port = "8080"; }
sub vcl_recv {
    # Set and get some values.
    var.set("foo", "bar");
    set req.http.x-foo = var.get("foo");
    var.set_int("ten", 10);
    var.set_int("five", 5);
    set req.http.twenty = var.get_int("ten") + var.get_int("five") + 5;
    # VCL will use the first token to decide final data type. Headers are strings.
    # set req.http.X-lifetime = var.get_int("ten") + " seconds"; #  Won't work.
    set req.http.X-lifetime = "" + var.get_int("ten") + " seconds";  # Works!
    var.set_duration("timedelta", 1m);  # 60s
    set req.http.d1 = var.get_duration("timedelta");
    var.set_ip("endpoint", client.ip);
    set req.http.x-client = var.get_ip("endpoint");
    # Unset all non-global variables.
    var.clear();
    # Demonstrate use of global variables as state flags.
    if (req.url ~ "/close$") {
        var.global_set("open", "no");
    }
    else if (req.url ~ "/open$") {
        var.global_set("open", "yes");
    }
    if (var.global_get("open") != "yes") {
        return (synth(200, "We are currently closed, sorry!"));
    }
}


Set key to value.

Get key with data type STRING. If stored key is not a STRING an empty string is returned.

Set key to value.

Get key with data type INT. If stored key is not an INT zero will be returned.

Identical to set().

Identical to get().

Set key to value.

Get key with data type REAL. If stored key is not a REAL zero will be returned.

Set key to value.

Get key with data type DURATION. If stored key is not a DURATION zero will be returned.

Set key to value.

Get key with data type IP. If stored key is not an IP null will be returned.

Set key to value.

Get key with data type BACKEND. If stored key is not a BACKEND, null will be returned.

Clear all non-global variables.

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.