Pierre Barre
Pierre Barre
@achanda I understand! I'll update my PR with just the fix for `is_subnet_of` in the next few days then.
I previously didn't want to include configuration for this as it would also mean adding a setting to expose the web GUI which would have been a pretty major security...
Hi, I am also interested in this. Did this go anywhere? Any way I can help?
@gitze I opened a new issue as what you experience is pretty different. Cloudflare uses TLS fingerprinting as part of their "bot detection" feature. Privaxy's TLS fingerprint is not matching...
> > It would be possible to make Privaxy to match common browsers fingerprints. Still, it would add a lot of complexity, be a maintenance burden and force Privaxy to...
@Eugeny I guess this can be closed then!
It may be interesting to look at the way lucene does it https://lucene.apache.org/core/8_0_0/grouping/org/apache/lucene/search/grouping/DistinctValuesCollector.html https://github.com/apache/lucene/blob/7425e43fa363f6665d5d363d032d3b1cb3242508/lucene/grouping/src/java/org/apache/lucene/search/grouping/DistinctValuesCollector.java#L35
> We have a limit currently after which don't merge segments. This limit does not take into account multi values in columns, which could exceed the value space `u32`. As...
> I think yes, it seems toasted. How many multi values per doc on average does your column have? I don't actually do multi values at all (If you mean...
Yes, no arrays. Here's my schema ```rust let mut document = doc!( self.indexer.id =>id, self.indexer.date => DateTime::from_timestamp_secs(something as i64), self.indexer.string1 =>String::new(), self.indexer.string2 => String::new(), self.indexer.string3 => String::new(), ); ```