From d937c5520490a09eb62a16c634c185fca2ed6c6a Mon Sep 17 00:00:00 2001 From: Michael Peter Christen Date: Mon, 22 Apr 2013 22:33:13 +0200 Subject: [PATCH] extended limitation of dom export size from 100000 to 100000000 --- source/net/yacy/search/index/Fulltext.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/net/yacy/search/index/Fulltext.java b/source/net/yacy/search/index/Fulltext.java index c56ac148a..d6b344a4b 100644 --- a/source/net/yacy/search/index/Fulltext.java +++ b/source/net/yacy/search/index/Fulltext.java @@ -854,7 +854,7 @@ public final class Fulltext { this.failure = null; this.format = format; this.dom = dom; - if ((dom) && (format == 2)) dom = false; + //if ((dom) && (format == 2)) dom = false; } @Override @@ -878,7 +878,7 @@ public final class Fulltext { if (this.dom) { - Map> scores = Fulltext.this.getDefaultConnector().getFacets(CollectionSchema.httpstatus_i.getSolrFieldName() + ":200", 100000, CollectionSchema.host_s.getSolrFieldName()); + Map> scores = Fulltext.this.getDefaultConnector().getFacets(CollectionSchema.httpstatus_i.getSolrFieldName() + ":200", 100000000, CollectionSchema.host_s.getSolrFieldName()); ReversibleScoreMap stats = scores.get(CollectionSchema.host_s.getSolrFieldName()); for (final String host: stats) { if (this.pattern != null && !this.pattern.matcher(host).matches()) continue;