MLT(MoreLikeThisComponent)のmlt.interestingTerms:スタンドアロン vs クラウド
トピック作成者:ks-solruserml-bot (2024/05/28 19:15 投稿)
1
(The bot translated the original post https://lists.apache.org/thread/gst5dfc2lwwf0qmk0gj8hm35jhdrttzn into Japanese and reposted it under Apache License 2.0. The copyright of posted content is held by the original poster.)
みなさん、こんにちは。
次のコマンドを実行すると:
curl "http://127.0.0.1:8983/solr/techproducts/select?omitHeader=true&wt=json&q=apache&fl=id&mlt=true&mlt.fl=manu%2Ccat&mlt.mintf=1&mlt.mindf=1&mlt.interestingTerms=list"
Solr 8.5のスタンドアロンモードのtechproductsで上記のコマンドを実行すると、出力にinterestingTermsが含まれます:
{
"response":{"numFound":2,"start":0,"docs":[
{
"id":"UTF8TEST"},
{
"id":"SOLR1000"}]
},
"interestingTerms":{
"UTF8TEST":["cat:search",
"manu:foundation",
"manu:software",
"manu:apache",
"cat:software"],
"SOLR1000":["cat:search",
"manu:foundation",
"manu:software",
"manu:apache",
"cat:software",
"cat:search",
"manu:foundation",
"manu:software",
"manu:apache",
"cat:software"]},
"moreLikeThis":{
"UTF8TEST":{"numFound":1,"start":0,"docs":[
{
"id":"SOLR1000"}]
},
"SOLR1000":{"numFound":1,"start":0,"docs":[
{
"id":"UTF8TEST"}]
}}}
同じバージョンのSolrをSolrCloudモードのtechproductsで実行すると、interestingTermsデータが欠落します:
{
"response":{"numFound":2,"start":0,"maxScore":0.5722849,"docs":[
{
"id":"UTF8TEST"},
{
"id":"SOLR1000"}]
},
"moreLikeThis":[
"UTF8TEST",{"numFound":1,"start":0,"maxScore":4.5925217,"docs":[
{
"id":"SOLR1000"}]
},
"SOLR1000",{"numFound":1,"start":0,"maxScore":4.5925217,"docs":[
{
"id":"UTF8TEST"}]
}]}
mlt.interestingTerms=detailsの場合も同じです。
これはバグなのか、未記載の制限なのか、わかりますか?
よろしくお願いします。
Thomas
トピックへ返信するには、ログインが必要です。