I am new to Solr. I have done indexing of web pages and getting the search result. But all results have
"score" = 0 "boost" = 0
As a result my search results are not sorted properly. At present my results are lexicographically sorted based on urls of web pages. I am specifying fl=*,score in my query.
I have specified following parameters for indexing "content" field of web pages
field name="content" type="text" stored="true" indexed="true" termVectors="true" termPositions="true" termOffsets="true" omitNorms = "false
Please help...