Here (at the end of table)关于在scrolls中使用elastic4s的示例,但我看不到任何用于设置scan参数的API。它是默认启用还是应该与某些钩子一起使用?
顺便说一下
默认情况下,在弹性搜索的scan
期间启用scrolling
参数?
答案 0 :(得分:4)
在初始搜索时设置scan
参数,所以:
client.execute {
search in "index" / "type" query <somequery> searchType SearchType.Scan scroll "1m"
}
之后
client.execute {
search scroll <id> keepAlive "1m"
}
(取自1.5x版本的elastic4s)