Done. Unfortunately with the same result. :confused:
Thanks, Jun.
Isn't it really strange? Again, I'm not the first person using Solr. I
wonder if the matter might be just local, due to some not so obvious reason
manifesting itself only on my machine (what is, of course, very unlikely but
still
What about
http://localhost:8080/solr/select?q=id:10&mlt=true&mlt.fl=content_mlt&mlt.maxqt=5&mlt.interestingTerms=details&fl=title+author+score&mlt.mindf=1
?
Jun Ohtani
SergeyG wrote:
>
> Hi,
>
> Recently, while implementing the MoreLikeThis search, I've run into the
> situation when Solr's
Many thanks to everybody who replied to my message.
1. "A couple of things, your mlt.fl value, must be part of fl. In this case,
content_mlt is not included in fl.
I think the fl parameter value need to be comma separated. try
fl=title,author,content_mlt,score"
Yao,
Although I don't understan
You definitely need "mlt=true" if you are not using /solr/mlt.
Bill
On Wed, Jul 8, 2009 at 2:14 PM, Otis Gospodnetic wrote:
>
> Sergey,
>
> What about
> http://localhost:8080/solr/select?q=id:10&mlt=true&mlt.fl=content_mlt&mlt.maxqt=
> 5&mlt.interestingTerms=details&fl=title+author+score&qt=mlt
Sergey,
What about
http://localhost:8080/solr/select?q=id:10&mlt=true&mlt.fl=content_mlt&mlt.maxqt=
5&mlt.interestingTerms=details&fl=title+author+score&qt=mlt
?
Otis
--
Sematext -- http://sematext.com/ -- Lucene - Solr - Nutch
- Original Message
> From: SergeyG
> To: solr-user@lu
A couple of things, your mlt.fl value, must be part of fl. In this case,
content_mlt is not included in fl.
I think the fl parameter value need to be comma separated. try
fl=title,author,content_mlt,score
-Yao
SergeyG wrote:
>
> Hi,
>
> Recently, while implementing the MoreLikeThis search, I'v