hello every body
I want just to add this example to be more clear. I have this result from
solr.
<result name="response" numFound="7" start="0" maxScore="0.59129626">
−
<doc>
<str name="id">1</str>
<str name="DocUrl">http://www.sarkozy.fr</str>
<str name="date">01/01/2008</str>
</doc>
−
<doc>
<str name="id">2</str>
<str name="DocUrl">http://www.sarkozy.fr</str>
<str name="date">31/01/2008</str>
</doc>
−
<doc>
<str name="id">3</str>
<str name="DocUrl">http://www.sarkozy.fr</str>
<str name="date">15/01/2008</str>
</doc>
.
.
.
</result>
Note that it's the same field DocUrl (http://www.sarkozy.fr) for the three
shown document above. I want to get in the result something like that.
<result name="response" numFound="7" start="0" maxScore="0.59129626">
−
<doc>
<str name="id">2</str>
<str name="DocUrl">http://www.sarkozy.fr</str>
<str name="date">31/01/2008</str>
</doc>
.
.
.
</result>
keep the recent one.
How to deal with that. Thank you in advance.
--
View this message in context:
http://www.nabble.com/how-to-add-a-new-parameter-to-solr-request-tp17338190p17344135.html
Sent from the Solr - Dev mailing list archive at Nabble.com.