关于在 Here (at the end of table) 中使用 scrolls 的 elastic4s 示例,但我看不到任何用于设置 scan 参数的 API。它是默认启用还是应该与某些钩子(Hook)一起使用?
顺便说一句
或者在elasticsearch的scan
期间默认启用scrolling
参数?
最佳答案
您在进行初始搜索时设置 scan
参数,因此:
client.execute {
search in "index" / "type" query <somequery> searchType SearchType.Scan scroll "1m"
}
然后后来
client.execute {
search scroll <id> keepAlive "1m"
}
(取自 elastic4s 的 1.5.x 版本)
关于scala - 在elastic4s中滚动期间是否启用了 `scan`参数?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30093854/