我正嘗試使用實時獲取SOLR。 在所有示例的文檔中,要實時獲取文檔,我必須使用該ID。 是否可以使用過濾器進行實時搜索?Solr實時獲取 - 如何使用過濾器實時搜索
這是文檔中的例子:
http://localhost:8983/solr/techproducts/get?id=mydoc&id=IW-
02&fq=name:realtime-get
{"response":
{"numFound":1,"start":0,"docs":
[ { "id":"mydoc",
"name":"realtime-get test!",
"_version_":1487137811571146752}
]
}
}
,我想這樣的事情:
http://localhost:8983/solr/techproducts/get?fq=name:realtime-get
{"response":
{"numFound":1,"start":0,"docs":
[ { "id":"mydoc",
"name":"realtime-get test!",
"_version_":1487137811571146752}
]
}
}