Repository: trafficserver Updated Branches: refs/heads/master a262eb619 -> ad7b314eb
Update the docs for per-remap support of background fetch plugin Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/ad7b314e Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/ad7b314e Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/ad7b314e Branch: refs/heads/master Commit: ad7b314eb3f14eba052f854e76e3b2692563a18c Parents: a262eb6 Author: Sudheer Vinukonda <[email protected]> Authored: Thu Oct 30 23:16:06 2014 +0000 Committer: Sudheer Vinukonda <[email protected]> Committed: Thu Oct 30 23:16:06 2014 +0000 ---------------------------------------------------------------------- doc/reference/plugins/background_fetch.en.rst | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/ad7b314e/doc/reference/plugins/background_fetch.en.rst ---------------------------------------------------------------------- diff --git a/doc/reference/plugins/background_fetch.en.rst b/doc/reference/plugins/background_fetch.en.rst index 71009a4..a4dc5f8 100644 --- a/doc/reference/plugins/background_fetch.en.rst +++ b/doc/reference/plugins/background_fetch.en.rst @@ -30,11 +30,18 @@ is not able to cache request / responses with byte ranges. Using the plugin ---------------- -This plugin currently only functions as a global plugin, and it takes not -arguments or parameters. In :file:`plugin.config`, simply add:: +This plugin functions as either a global or per remap plugin, and +it takes an argument for specifying a config file with exclusion +criteria. - background_fetch.so +To activate the plugin in global mode, in :file:`plugin.config`, simply add:: + background_fetch.so --config <relative-path-to-install-dir/config-file> + +To activate the plugin in per remap mode, in :file:`remap.config`, simply append the +below to the specific remap line:: + + @plugin=background_fetch.so @pparam=<relative-path-to-install-dir/config-file> Functionality -------------
