我需要使用Solr leftOuterJoin函数。
"正常使用查询";http://localhost:9083/solr/item/select?q=ITEM_NAME:APPLE">
Solr文档leftOuterJoin 下方的示例
leftOuterJoin(
search(people, q=*:*, fl="personId,name", sort="personId asc"),
search(pets, q=type:cat, fl="personId,petName", sort="personId asc"),
on="personId"
)
然而,我不知道如何使用样本进行查询
http://localhost:9083/solr/item/select?leftOuterJoin(搜索(people,q=:,fl="personId,name"sort=quot;personId asc"personId"(
不工作
这是一个流式表达式,而不是常规查询。
针对/stream
端点发布流式表达式:
http://localhost:9083/solr/item/stream
参数expr=
表示您的流式表达式:
expr=leftOuterJoin(
search(people, q=*:*, fl="personId,name", sort="personId asc"),
search(pets, q=type:cat, fl="personId,petName", sort="personId asc"),
on="personId"
)