From mboxrd@z Thu Jan 1 00:00:00 1970 From: Daniel =?utf-8?q?Weism=C3=BCller?= To: development@lists.ipfire.org Subject: [PATCH] squid: Add RAM-only Proxy functionality Date: Fri, 16 Feb 2018 13:04:50 +0100 Message-ID: <20180216120450.12580-1-daniel.weismueller@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============6829336978562488433==" List-Id: --===============6829336978562488433== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable As suggested by Oliver "giller" Fieker in bug 10592 I added the functionality to use the squid as ram-only cache. Further it defines the maximum_object_size_in_memory as 2% of the in the webif defined "Memory cache size". The maximum_object_size_in_memory should have a useful size of the defined memory cache and I don't want to create another variable which muste be fulled in by the user. Signed-off-by: Daniel Weism=C3=BCller Suggested-by: Oliver "giller" Fieker Suggested-by: Kim W=C3=B6lfel Acked-by: Michael Tremer Cc: Stefan Schantl Signed-off-by: Daniel Weism=C3=BCller --- html/cgi-bin/proxy.cgi | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/html/cgi-bin/proxy.cgi b/html/cgi-bin/proxy.cgi index 6aa14e15a..8379cf86d 100644 --- a/html/cgi-bin/proxy.cgi +++ b/html/cgi-bin/proxy.cgi @@ -401,8 +401,7 @@ if (($proxysettings{'ACTION'} eq $Lang::tr{'save'}) || ($= proxysettings{'ACTION'} $errormessage =3D $Lang::tr{'proxy errmsg filedescriptors'}; goto ERROR; } - if (!($proxysettings{'CACHE_MEM'} =3D~ /^\d+/) || - ($proxysettings{'CACHE_MEM'} < 1)) + if (!($proxysettings{'CACHE_MEM'} =3D~ /^\d+/)) { $errormessage =3D $Lang::tr{'advproxy errmsg mem cache size'}; goto ERROR; @@ -3174,7 +3173,7 @@ END } } =20 - if ($proxysettings{'CACHE_SIZE'} > 0) + if (($proxysettings{'CACHE_SIZE'} > 0) || ($proxysettings{'CACHE_MEM'} > 0)) { print FILE "\n"; =20 @@ -3271,7 +3270,12 @@ cache_dir aufs /var/log/cache $proxysettings{'CACHE_SI= ZE'} $proxysettings{'L1_DI END ; } else { - print FILE "cache deny all\n\n"; + if ($proxysettings{'CACHE_MEM'} > 0) { + # always 2% of CACHE_MEM defined as max object size + print FILE "maximum_object_size_in_memory " . int($proxysettings{'CACHE_M= EM'} * 1024 * 0.02) . " KB\n\n"; + } else { + print FILE "cache deny all\n\n"; + } } =20 print FILE <