: SolrIndexSearcher.QueryCommand cmd = rb.getQueryCommand();
: SolrIndexSearcher.QueryResult result = new SolrIndexSearcher.QueryResult();
: searcher.search(result, cmd);
: rb.setResult(result);
: response.add("response", builder.getREsults().docList);
what else do you do with "rb" before this? .
A little more info.
Doing some more digging it appears that result.getDocList().size() is
returning 0 which would explain why I'm not getting any documents in my
result.
I'm not quite sure how/why that would be returning 0 while
result.getDocList().matches() is returning > 0?
It also looks li