I want to optimise my Solr engine. I don't want ranked results. I just want all docs which match my query is there any way I can remove it . So that retrieving data improves ?
相关问题
- JCR-SQL - contains function doesn't escape spe
- Solr Deduplication (dedupe) giving all zeros in si
- Solr (Sunspot), max results more than 30?
- Match lucene entire field exact value
- How to rank documents using tfidf similairty in lu
相关文章
- Solr - _version_ field must exist in schema and be
- SolrNet - Score always 0
- How can use the /export request handler via SolrJ?
- request counting for documents in apache solr
- How to search records between two coordinates usin
- Boost result by specified search term on top
- CakePHP with Lucene
- Faceted searching and categories in MySQL and Solr
There is no need to remove relevancy ranking to achieve what you want.
By setting the
rows
parameter to the same number as thenumfound
you will retrieve all documents matching your query.http://url-to-some-server/solr/select?q=somequery&rows=200
if you want the documents sorted in another way than by relevance, just add a
&sort=somefield desc
wheresomefield
is a sortable field.