Re: Solr's MLT query call doesn't work

2009-07-10 Thread SergeyG
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

Re: Solr's MLT query call doesn't work

2009-07-09 Thread Jun Ohtani
What about http://localhost:8080/solr/select?q=id:10mlt=truemlt.fl=content_mltmlt.maxqt=5mlt.interestingTerms=detailsfl=title+author+scoremlt.mindf=1 ? Jun Ohtani SergeyG wrote: Hi, Recently, while implementing the MoreLikeThis search, I've run into the situation when Solr's mlt query

Solr's MLT query call doesn't work

2009-07-08 Thread SergeyG
Hi, Recently, while implementing the MoreLikeThis search, I've run into the situation when Solr's mlt query calls don't work. More specifically, the following query: http://localhost:8080/solr/select?q=id:10mlt=truemlt.fl=content_mltmlt.maxqt=

Re: Solr's MLT query call doesn't work

2009-07-08 Thread Yao Ge
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've

Re: Solr's MLT query call doesn't work

2009-07-08 Thread Otis Gospodnetic
To: solr-user@lucene.apache.org Sent: Wednesday, July 8, 2009 9:44:20 AM Subject: Solr's MLT query call doesn't work Hi, Recently, while implementing the MoreLikeThis search, I've run into the situation when Solr's mlt query calls don't work. More specifically, the following query: http

Re: Solr's MLT query call doesn't work

2009-07-08 Thread Bill Au
To: solr-user@lucene.apache.org Sent: Wednesday, July 8, 2009 9:44:20 AM Subject: Solr's MLT query call doesn't work Hi, Recently, while implementing the MoreLikeThis search, I've run into the situation when Solr's mlt query calls don't work. More specifically, the following query

Re: Solr's MLT query call doesn't work

2009-07-08 Thread SergeyG
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 understand