Skip to content

Commit 64d5070

Browse files
committed
Merge pull request #54 from soay/devel
Increasing search performance
2 parents 82e0287 + 56c9905 commit 64d5070

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/java/main/esg/search/query/impl/solr/SolrUrlBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ public String buildSelectQueryString() throws MalformedURLException, Unsupported
255255
}
256256

257257
// if no text constraint -> use '*'
258-
if (qs.isEmpty()) qs.add(URLEncoder.encode("*", "UTF-8"));
258+
if (qs.isEmpty()) qs.add(URLEncoder.encode("*:*", "UTF-8"));
259259

260260
// &facet.field=...&facet.field=...
261261
if (this.facets!=null) {

0 commit comments

Comments
 (0)