diff options
author | Ludovic Courtès <ludo@gnu.org> | 2017-04-19 17:16:21 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-04-19 17:51:39 +0200 |
commit | a35136cb564123932dbab2e3f319b344ecdca555 (patch) | |
tree | 204bfbe8c3a27d8a7b93ad964edd5aa7bc5f3aa6 /doc | |
parent | 2363bdd707ba382d89c96e03c04038c047d7228c (diff) | |
download | patches-a35136cb564123932dbab2e3f319b344ecdca555.tar patches-a35136cb564123932dbab2e3f319b344ecdca555.tar.gz |
services: guix-publish: Add 'cache', 'workers', and 'ttl' config knobs.
* gnu/services/base.scm (<guix-publish-configuration>)[cache, workers,
ttl]: New fields.
(guix-publish-shepherd-service): Honor them.
(guix-publish-activation): New procedure.
(guix-publish-service-type): Extend ACTIVATION-SERVICE-TYPE.
* doc/guix.texi (Base Services): Document it.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/guix.texi | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index f2eba59d9c..a482beea50 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -9145,6 +9145,23 @@ compression ratio at the expense of increased CPU usage. @item @code{nar-path} (default: @code{"nar"}) The URL path at which ``nars'' can be fetched. @xref{Invoking guix publish, @code{--nar-path}}, for details. + +@item @code{cache} (default: @code{#f}) +When it is @code{#f}, disable caching and instead generate archives on +demand. Otherwise, this should be the name of a directory---e.g., +@code{"/var/cache/guix/publish"}---where @command{guix publish} caches +archives and meta-data ready to be sent. @xref{Invoking guix publish, +@option{--cache}}, for more information on the tradeoffs involved. + +@item @code{workers} (default: @code{#f}) +When it is an integer, this is the number of worker threads used for +caching; when @code{#f}, the number of processors is used. +@xref{Invoking guix publish, @option{--workers}}, for more information. + +@item @code{ttl} (default: @code{#f}) +When it is an integer, this denotes the @dfn{time-to-live} of the +published archives. @xref{Invoking guix publish, @option{--ttl}}, for +more information. @end table @end deftp |