Commit 2654795d authored by Geoff Simmons's avatar Geoff Simmons

clarify LIMITATIONS in the doc concerning memory allocation

parent 7ea7a4b7
Pipeline #65 skipped
......@@ -487,12 +487,16 @@ check``, the VMODs ``blobcode`` and ``blob`` must be installed (see
LIMITATIONS
===========
The VMOD allocates memory for BLOBs in Varnish workspace. If its
For operations outside of ``vcl_init``, the VMOD allocates memory for
BLOBs and other internal structures in Varnish workspace. If its
methods or functions fail, as indicated by "out of space" messages in
the Varnish log (with the ``VCL_Error`` tag), then you will need to
increase the varnishd parameters ``workspace_client`` and/or
``workspace_backend``.
For operations invoked in ``vcl_init``, the VMOD allocates heap
memory, and hence is only limited by available RAM.
INSTALLATION
============
......
......@@ -426,12 +426,16 @@ check``, the VMODs ``blobcode`` and ``blob`` must be installed (see
LIMITATIONS
===========
The VMOD allocates memory for BLOBs in Varnish workspace. If its
For operations outside of ``vcl_init``, the VMOD allocates memory for
BLOBs and other internal structures in Varnish workspace. If its
methods or functions fail, as indicated by "out of space" messages in
the Varnish log (with the ``VCL_Error`` tag), then you will need to
increase the varnishd parameters ``workspace_client`` and/or
``workspace_backend``.
For operations invoked in ``vcl_init``, the VMOD allocates heap
memory, and hence is only limited by available RAM.
INSTALLATION
============
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment