--------------------- PatchSet 1589 Date: 2005/08/24 18:59:05 Author: rousskov Branch: squid3-icap Tag: (none) Log: - Instead of recommending a fixed size (4KB) buffer, provide min (4KB) and max (8KB) buffer sizes for ICAP message pipes. This might decrease ICAP memory footprint while improving ICAP pipe throughput. Members: src/ICAPClient.h:1.1.2.2->1.1.2.3 Index: squid3/src/ICAPClient.h =================================================================== RCS file: /cvsroot/squid-sf//squid3/src/Attic/ICAPClient.h,v retrieving revision 1.1.2.2 retrieving revision 1.1.2.3 diff -u -r1.1.2.2 -r1.1.2.3 --- squid3/src/ICAPClient.h 19 Aug 2005 20:05:44 -0000 1.1.2.2 +++ squid3/src/ICAPClient.h 24 Aug 2005 18:59:05 -0000 1.1.2.3 @@ -1,6 +1,6 @@ /* - * $Id: ICAPClient.h,v 1.1.2.2 2005/08/19 20:05:44 rousskov Exp $ + * $Id: ICAPClient.h,v 1.1.2.3 2005/08/24 18:59:05 rousskov Exp $ * * * SQUID Web Proxy Cache http://www.squid-cache.org/ @@ -47,6 +47,6 @@ extern void ICAPInitXaction(MsgPipe *virgin, MsgPipe *adapted); // recommended initial size and max capacity for MsgPipe buffer -enum { ICAPMsgPipeBufSize = (4*1024) }; +enum { ICAPMsgPipeBufSizeMin = (4*1024), ICAPMsgPipeBufSizeMax = (8*1024) }; #endif /* SQUID_ICAPCLIENT_H */