1HELPER-MUX(8) User Contributed Perl Documentation HELPER-MUX(8)
2
3
4
6 helper-mux - Concurrency protocol multiplexer for Squid helpers
7
9 helper-mux helper-path [helper-options ...]
10
12 helper-mux purpose is to relieve some of the burden squid has when
13 dealing with slow helpers. It does so by acting as a middleman between
14 squid and the actual helpers, talking to squid via the multiplexed
15 variant of the helper protocol and to the helpers via the non-
16 multiplexed variant.
17
18 Helpers are started on demand, and in theory the muxer can handle up to
19 1k helpers per instance. It is up to squid to decide how many helpers
20 to start.
21
22 The helper can be controlled using various signals: - SIGHUP: dump the
23 state of all helpers to STDERR
24
26 helper-path
27 Path to the helper being multiplexed.
28
29 helper-options
30 Command line options for the helper being multiplexed.
31
33 helper-mux knows nothing about the actual messages being passed around,
34 and as such cannot yet compensate for broken helpers.
35
36 It is not yet able to manage dying helpers.
37
39 * Copyright (C) 1996-2023 The Squid Software Foundation and contributors
40 *
41 * Squid software is distributed under GPLv2+ license and includes
42 * contributions from numerous individuals and organizations.
43 * Please see the COPYING and CONTRIBUTORS files for details.
44
45 Copyright (C) Francesco Chemolli <kinkie@squid-cache.org>
46
47 This program is free software; you can redistribute it and/or modify
48 it under the terms of the GNU General Public License as published by
49 the Free Software Foundation; either version 2 of the License, or
50 (at your option) any later version.
51
52 This program is distributed in the hope that it will be useful,
53 but WITHOUT ANY WARRANTY; without even the implied warranty of
54 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
55 GNU General Public License for more details.
56
57 You should have received a copy of the GNU General Public License
58 along with this program; if not, write to the Free Software
59 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
60
61
62
63perl v5.36.1 2023-11-07 HELPER-MUX(8)