On Mon, 11 Mar 2002, Joe Cooper wrote: > A Squid-style auth interface module would also solve this, I think--we > could just use all of the Squid auth modules. ;-) > > Would it be possible to add a module to talk to Squid-style redirectors > as well (or is this already possible?)?
You can't talk to external redirector from oops. But it have internal reirector with regex or fast substring matching. > > It is interesting, what is average hardware setup (and load) for your clients? > > Depends on the client. Most are Internet Service Provides. The biggest > hardware we have in service is a dual PIII with 2GB of RAM and 3 15k RPM > disks serving 230 requests per second at peak loads and 180 during > average load periods. It has about 40GB of cache object storage. I never test oops in real life under such load... > > Some are much smaller, but the average is a single PIII with two or > three 10k RPM disks pushing 100-150 requests per second at peak. This is ok, I'm monitoring now real proxy under such load and such config (it have 2 processors, 1G memory, 2*35G storages) > Oh, ok. How far out is the new codebase from being 'stable'? As far as possible. It can accept request, parse it, connect to origin server. That is all. But it contain set of objects and libraries which moves to needed functionality. > Would you mind explaining briefly some of the design changes you've made > since the current Oops codebase was implemented?-- 1. thread pool instead of thread-per-connect (threaded reactor pattern) this is main goal of rewrite. It will allow use less threads, and probably increase performance. 2. more memory control. This is second main goal. 3. safe string operations. 4. probably some special db. 5. C++ instead of C if it will worth. 6. Configurator which will allow change single config option at run time. > Joe Cooper <[EMAIL PROTECTED]> > http://www.swelltech.com > Web Caching Appliances and Support > > ===================================================================== > If you would like to unsubscribe from this list send message to > [EMAIL PROTECTED] with "unsubscribe oops-eng" in message body. > Archive is accessible on http://lists.paco.net/oops-eng/ > Igor Khasilev | PACO Links, igor at paco dot net | ===================================================================== If you would like to unsubscribe from this list send message to [EMAIL PROTECTED] with "unsubscribe oops-eng" in message body. Archive is accessible on http://lists.paco.net/oops-eng/
