From: Xaver4all <xaver4all@gmx.de>
To: development@lists.ipfire.org
Subject: [PATCH] Add RAM-only Proxy functionality - Bug Report #10592
Date: Mon, 28 Dec 2015 00:57:39 +0100 [thread overview]
Message-ID: <56807AF3.3000109@gmx.de> (raw)
In-Reply-To: <1451172013-18852-1-git-send-email-matthias.fischer@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 1543 bytes --]
Squiddoesn't use RAM only for caching, if you set cachesize for disk
usage =0 andmemory cachesize >0 in GUI.
Now if you set "cache_size"=0 and "cache_mem">0,caching won't be
disabled completely ("cache deny all").
If you want todisable caching completely you must set "cache_size"=0 and
"cache_mem"=0.
Besides this "maximum_object_size_in_memory" will be set to 512KB.
Originally reported by qiller in Bugtracker form over one year. I just
created the diff an tested this on my IP-Fire.
Especially for the announced 64 Bit version of IP-Fire, where Squid can
handel more RAM, this may be useful.
Reported-by: qiller
Signed-off-by: Kim Wölfel <xaver4all(a)gmx.de>
---
html/cgi-bin/proxy.cgi | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/html/cgi-bin/proxy.cgi b/html/cgi-bin/proxy.cgi
index 6c4e2b0..164ca63 100644
--- a/html/cgi-bin/proxy.cgi
+++ b/html/cgi-bin/proxy.cgi
@@ -3173,7 +3173,7 @@ END
}
}
- if ($proxysettings{'CACHE_SIZE'} > 0)
+ if (($proxysettings{'CACHE_SIZE'} > 0) ||
($proxysettings{'CACHE_MEM'} > 0))
{
print FILE "\n";
@@ -3270,7 +3270,12 @@ cache_dir aufs /var/log/cache
$proxysettings{'CACHE_SIZE'} $proxysettings{'L1_DI
END
;
} else {
- print FILE "cache deny all\n\n";
+ if ($proxysettings{'CACHE_MEM'} > 0)
+ {
+ print FILE "maximum_object_size_in_memory 512 KB\n\n";
+ } else {
+ print FILE "cache deny all\n\n";
+ }
}
print FILE <<END
--
2.6.4.windows.1
next prev parent reply other threads:[~2015-12-27 23:57 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-12-26 23:20 [PATCH] bind: Update to 9.10.3-P2 Matthias Fischer
2015-12-27 23:57 ` Xaver4all [this message]
2015-12-28 14:39 ` Michael Tremer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=56807AF3.3000109@gmx.de \
--to=xaver4all@gmx.de \
--cc=development@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox