Below snippet will help you to sort solr search results.
Few things i would like to highlight about solr result sorting.
You can not sort tokenized field i mean if you have defined your solr field with the type text or textToTight.
You can sort the field which have type string . You can create dynamic fields easily in solr.
Add below entry in schema.xml and solr will automatically create field with the type string.
<dynamicField name="*_sortable" type="string" indexed="true" multiValued="false" stored="true" />
If you use any field with suffix _sortable then solr will automatically create field if it is not exist.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ThemeDisplay themeDisplay = (ThemeDisplay) portletRequest.getAttribute(WebKeys.THEME_DISPLAY); | |
SearchContext searchContext = new SearchContext(); | |
long companyId = themeDisplay.getCompanyId(); | |
searchContext.setCompanyId(companyId); | |
Sort sort = new Sort(orderByColumn, orderByType.equalsIgnoreCase("desc") ? Boolean.TRUE : Boolean.FALSE); | |
searchContext.setSorts(new Sort[] { sort }); | |
searchContext.setStart(start); | |
searchContext.setEnd(end); | |
Hits hits = null; | |
try { | |
hits = SearchEngineUtil.search(searchContext, createBooleanQuery(portletRequest,themeDisplay.getScopeGroupId(), searchContext)); | |
} catch (SearchException e) { | |
LOGGER.error(e.getMessage(), e); | |
} | |
You can not sort tokenized field i mean if you have defined your solr field with the type text or textToTight.
You can sort the field which have type string . You can create dynamic fields easily in solr.
Add below entry in schema.xml and solr will automatically create field with the type string.
<dynamicField name="*_sortable" type="string" indexed="true" multiValued="false" stored="true" />
If you use any field with suffix _sortable then solr will automatically create field if it is not exist.
I have used this code ans still solr is not hitting with sorted field what I passed in search Context.
ReplyDeletePlease note my code as below,
http://stackoverflow.com/questions/33547609/set-order-in-solr-query-with-searchcontext-liferay