Skip to content

Commit

Permalink
Merge pull request #54 from soay/devel
Browse files Browse the repository at this point in the history
Increasing search performance
  • Loading branch information
LucaCinquini committed Dec 18, 2014
2 parents 82e0287 + 56c9905 commit 64d5070
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ public String buildSelectQueryString() throws MalformedURLException, Unsupported
}

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

// &facet.field=...&facet.field=...
if (this.facets!=null) {
Expand Down

0 comments on commit 64d5070

Please sign in to comment.