why ???

2006-11-14 Thread hendra lamidjan
heloo all squid develop. sory if my langguange is not good. there is many people asking for "method put" for accounting purpose ( PUT + POST - not just POST) why thereis never been develop yet. or thereis imposible to log the "PUT method" in squid- access.log ? or this is to difficult to develo

Re: Squid-ICAP problem (bug?)

2006-11-14 Thread Christophe Boyanique
Hello, Thanks for you support. I tried the patch from Tsantilas: if (icap->chunk_size < 0) icap->flags.reqmod_http_entity_eof = 1; instead of: if (icap->reqmod.http_entity.bytes_read >= icap->request->content_length) icap->flags.reqmod_http_entity_eof = 1; And that corrects

Re: Squid-3 mini-project

2006-11-14 Thread Brian Akins
Mark Bergsma wrote: I should be able to (carefully) test / profile Squid-3 (or 2.6) with some real life load (Wikipedia) soonish. High userland CPU usage is one of the major problems we're having with Squid... On our installs, almost all the cpu is spent in poll. We have high CPU usage, but

Re: Squid-3 mini-project

2006-11-14 Thread Adrian Chadd
On Tue, Nov 14, 2006, Brian Akins wrote: > Mark Bergsma wrote: > > >I should be able to (carefully) test / profile Squid-3 (or 2.6) with > >some real life load (Wikipedia) soonish. High userland CPU usage is one > >of the major problems we're having with Squid... > > On our installs, almost all t

Re: Squid-3 mini-project

2006-11-14 Thread ShuXin Zheng
You can use epoll(on linux kernel2.6) or kqueue, which improve the performance of squid when connections is high. in linux: configure with "--enable-epoll" or in BSD: --enable-kqueue 2006/11/15, Brian Akins <[EMAIL PROTECTED]>: Mark Bergsma wrote: > I should be able to (carefully) test / profil