Skip to content
This repository has been archived by the owner on Jul 30, 2021. It is now read-only.

Commit

Permalink
Making the user guide more user guidery
Browse files Browse the repository at this point in the history
  • Loading branch information
perbu committed Sep 7, 2012
1 parent b31835c commit f125f37
Show file tree
Hide file tree
Showing 8 changed files with 38 additions and 55 deletions.
26 changes: 2 additions & 24 deletions doc/sphinx/users-guide/advanced_topics.rst
Expand Up @@ -19,6 +19,8 @@ page - ref:`reference-vcl`.
Using In-line C to extend Varnish Using In-line C to extend Varnish
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


(Here there be dragons)

You can use *in-line C* to extend Varnish. Please note that you can You can use *in-line C* to extend Varnish. Please note that you can
seriously mess up Varnish this way. The C code runs within the Varnish seriously mess up Varnish this way. The C code runs within the Varnish
Cache process so if your code generates a segfault the cache will crash. Cache process so if your code generates a segfault the cache will crash.
Expand All @@ -37,27 +39,3 @@ One of the first uses I saw of In-line C was logging to syslog.::
} }




Edge Side Includes
~~~~~~~~~~~~~~~~~~

Varnish can cache create web pages by putting different pages
together. These *fragments* can have individual cache policies. If you
have a web site with a list showing the 5 most popular articles on
your site, this list can probably be cached as a fragment and included
in all the other pages. Used properly it can dramatically increase
your hit rate and reduce the load on your servers. ESI looks like this::

<HTML>
<BODY>
The time is: <esi:include src="/cgi-bin/date.cgi"/>
at this very moment.
</BODY>
</HTML>

ESI is processed in vcl_fetch by setting *do_esi* to true.::

sub vcl_fetch {
if (req.url == "/test.html") {
set beresp.do_esi = true; /* Do ESI processing */
}
}
2 changes: 2 additions & 0 deletions doc/sphinx/users-guide/command_line.rst
@@ -1,5 +1,7 @@
.. _users-guide-command-line: .. _users-guide-command-line:


XXX: Total rewrite of this

Starting Varnish Starting Varnish
---------------- ----------------


Expand Down
25 changes: 16 additions & 9 deletions doc/sphinx/users-guide/esi.rst
Expand Up @@ -3,14 +3,12 @@
Edge Side Includes Edge Side Includes
------------------ ------------------


*Edge Side Includes* is a language to include *fragments* of web pages Varnish can cache create web pages by putting different pages
in other web pages. Think of it as HTML include statement that works together. These *fragments* can have individual cache policies. If you
over HTTP. have a web site with a list showing the 5 most popular articles on

your site, this list can probably be cached as a fragment and included
On most web sites a lot of content is shared between in all the other pages. Used properly it can dramatically increase
pages. Regenerating this content for every page view is wasteful and your hit rate and reduce the load on your servers.
ESI tries to address that letting you decide the cache policy for
each fragment individually.


In Varnish we've only implemented a small subset of ESI. As of 2.1 we In Varnish we've only implemented a small subset of ESI. As of 2.1 we
have three ESI statements: have three ESI statements:
Expand All @@ -20,7 +18,8 @@ have three ESI statements:
* <!--esi ...--> * <!--esi ...-->


Content substitution based on variables and cookies is not implemented Content substitution based on variables and cookies is not implemented
but is on the roadmap. but is on the roadmap. At least if you look at the roadmap from a
certain angle. During a full moon.


Varnish will not process ESI instructions in HTML comments. Varnish will not process ESI instructions in HTML comments.


Expand Down Expand Up @@ -77,3 +76,11 @@ For example::
<p>The full text of the license:</p> <p>The full text of the license:</p>
<esi:include src="http://example.com/LICENSE" /> <esi:include src="http://example.com/LICENSE" />
--> -->

Doing ESI on JSON and other non-XMLish content
----------------------------------------------

Please note that Varnish will peek at the included content. If it
doesn't start with a "<" Varnish assumes you didn't really mean to
include it and disregard it. You can alter this behaviour by setting
the esi_syntax parameter (see ref:`ref-varnishd`).
11 changes: 4 additions & 7 deletions doc/sphinx/users-guide/index.rst
Expand Up @@ -5,13 +5,10 @@ Using Varnish
%%%%%%%%%%%%% %%%%%%%%%%%%%


This guide is intended for system administrators managing Varnish This guide is intended for system administrators managing Varnish
Cache. The reader should know how to configure her web- or application Cache.
server and have basic knowledge of the HTTP protocol. The reader
should have Varnish Cache up and running with the default
configuration.


The guide is split into short chapters, each chapter taking on a The guide is split into short chapters, each chapter explaining a
separate topic. Good luck. separate topic.


.. toctree:: :maxdepth: 1 .. toctree:: :maxdepth: 1


Expand All @@ -24,13 +21,13 @@ separate topic. Good luck.
increasing_your_hitrate increasing_your_hitrate
cookies cookies
vary vary
hashing
purging purging
compression compression
esi esi
virtualized virtualized
websockets websockets
devicedetection devicedetection
advanced_backend_servers
handling_misbehaving_servers handling_misbehaving_servers
advanced_topics advanced_topics
troubleshooting troubleshooting
Expand Down
6 changes: 3 additions & 3 deletions doc/sphinx/users-guide/logging.rst
Expand Up @@ -7,7 +7,8 @@ One of the really nice features in Varnish is how logging
works. Instead of logging to normal log file Varnish logs to a shared works. Instead of logging to normal log file Varnish logs to a shared
memory segment. When the end of the segment is reached we start over, memory segment. When the end of the segment is reached we start over,
overwriting old data. This is much, much faster then logging to a file overwriting old data. This is much, much faster then logging to a file
and it doesn't require disk space. and it doesn't require disk space. Besides it gives you much, much
more information when you need it.


The flip side is that if you forget to have a program actually write the The flip side is that if you forget to have a program actually write the
logs to disk they will disappear. logs to disk they will disappear.
Expand Down Expand Up @@ -64,5 +65,4 @@ want to know are:
Only list transactions where the tag matches a regular expression. If Only list transactions where the tag matches a regular expression. If
it matches you will get the whole transaction. it matches you will get the whole transaction.


Now that Varnish seem to work OK it's time to put Varnish on port 80 For more information on this topic please see ref:`ref-varnishlog`.
while we tune it.
8 changes: 4 additions & 4 deletions doc/sphinx/users-guide/sizing_your_cache.rst
Expand Up @@ -12,10 +12,10 @@ task. A few things to consider:
to only cache images a little while or not to cache them at all if to only cache images a little while or not to cache them at all if
they are cheap to serve from the backend and you have a limited they are cheap to serve from the backend and you have a limited
amount of memory. amount of memory.
* Watch the n_lru_nuked counter with :ref:`reference-varnishstat` or some other * Watch the n_lru_nuked counter with :ref:`reference-varnishstat` or
tool. If you have a lot of LRU activity then your cache is evicting some other tool. If you have a lot of LRU activity then your cache
objects due to space constraints and you should consider increasing is evicting objects due to space constraints and you should
the size of the cache. consider increasing the size of the cache.


Be aware that every object that is stored also carries overhead that Be aware that every object that is stored also carries overhead that
is kept outside the actually storage area. So, even if you specify -s is kept outside the actually storage area. So, even if you specify -s
Expand Down
13 changes: 5 additions & 8 deletions doc/sphinx/users-guide/troubleshooting.rst
Expand Up @@ -63,14 +63,11 @@ errors will be logged in syslog. It might look like this::
Mar 8 13:23:43 smoke varnishd[15670]: Child cleanup complete Mar 8 13:23:43 smoke varnishd[15670]: Child cleanup complete
Mar 8 13:23:43 smoke varnishd[15670]: child (15697) Started Mar 8 13:23:43 smoke varnishd[15670]: child (15697) Started


Specifically if you see the "Error in munmap" error on Linux you might In this situation the mother process assumes that the cache died and
want to increase the amount of maps available. Linux is limited to a killed it off.
maximum of 64k maps. Setting vm.max_max_count i sysctl.conf will
enable you to increase this limit. You can inspect the number of maps XXX: Describe crashing child process and crashing mother process here too.
your program is consuming by counting the lines in /proc/$PID/maps XXX: panic.show

This is a rather odd thing to document here - but hopefully Google
will serve you this page if you ever encounter this error.


Varnish gives me Guru meditation Varnish gives me Guru meditation
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down
2 changes: 2 additions & 0 deletions doc/sphinx/users-guide/virtualized.rst
@@ -1,4 +1,6 @@


XXX: What is this doing here?

Running Varnish in a virtualized environment Running Varnish in a virtualized environment
-------------------------------------------- --------------------------------------------


Expand Down

0 comments on commit f125f37

Please sign in to comment.