Re: [squid-dev] [RFC] annotate_transaction ACL

2016-07-10 Thread Alex Rousskov
On 07/09/2016 05:47 PM, Amos Jeffries wrote: > On 10/07/2016 7:14 a.m., Alex Rousskov wrote: >> >> B. Add general ACL options to be able to force any existing ACL to add >> an annotation: >> >> acl myOldAcl dst --annotate foo=bar 127.0.0.1/32 >> >> Please let me know if you consider any of the

Re: [squid-dev] [PATCH] TidyPointer removal

2016-07-10 Thread Amos Jeffries
On 11/07/2016 10:20 a.m., Alex Rousskov wrote: > On 07/10/2016 02:02 AM, Amos Jeffries wrote: > >> * For the LockingPointer(T*) ctor and resetWithoutLocking() method >> the caller is responsible for: >> - doing a +1 lock itself, and >> - exactly once for *each time either is used*, and >> -

Re: [squid-dev] [PATCH] TidyPointer removal

2016-07-10 Thread Alex Rousskov
On 07/10/2016 02:02 AM, Amos Jeffries wrote: > On 10/07/2016 2:38 p.m., Alex Rousskov wrote: >> On 07/09/2016 07:10 AM, Amos Jeffries wrote: >>> On 9/07/2016 11:18 a.m., Alex Rousskov wrote: On 07/08/2016 12:44 AM, Amos Jeffries wrote: > On 8/07/2016 11:24 a.m., Alex Rousskov wrote:

Re: [squid-dev] [PATCH Bug 4534 and N-bit fixes for CacheDigest

2016-07-10 Thread Kinkie
Hi, I think it is reasonable to expand the number of objects Squid can manage. 32-bit systems are almost rare to come by nowadays. On Sun, Jul 10, 2016 at 11:08 AM, Amos Jeffries wrote: > On 10/07/2016 1:37 a.m., Amos Jeffries wrote: > > This patch converts the

Re: [squid-dev] [PATCH Bug 4534 and N-bit fixes for CacheDigest

2016-07-10 Thread Kinkie
Hi, +uint32_t mask_size; /* mask size in bytes */ +uint64_t capacity; /* expected maximum for .count, not a hard limit */ +int8_t bits_per_entry; /* number of bits allocated for each entry from capacity */ int count; /* number of digested entries */ int

[squid-dev] HTTP meetup in Stockholm

2016-07-10 Thread Kinkie
Hi all, at the end of the month I will attend the HTTP meetup in Stockholm. Besides having a chance to see Henrik, I'd like to collect your feedback and opinions on the topic that are likely to be touched. Currently there is rather hot discussion on the mailing list on the topics of JSON

Re: [squid-dev] [PATCH Bug 4534 and N-bit fixes for CacheDigest

2016-07-10 Thread Amos Jeffries
On 10/07/2016 1:37 a.m., Amos Jeffries wrote: > This patch converts the CacheDigest members and method parameters to use > explicitly sized data types more appropriate for what details they hold. > > * 64-bit Digest capacity (entry count) > * 32-bit Mask Size (byte count) > * 8-bit Bit count per

Re: [squid-dev] [PATCH] TidyPointer removal

2016-07-10 Thread Amos Jeffries
On 10/07/2016 2:38 p.m., Alex Rousskov wrote: > On 07/09/2016 07:10 AM, Amos Jeffries wrote: >> On 9/07/2016 11:18 a.m., Alex Rousskov wrote: >>> On 07/08/2016 12:44 AM, Amos Jeffries wrote: On 8/07/2016 11:24 a.m., Alex Rousskov wrote: >> >> +void resetWithoutLocking(T *t) {