在Scala中Seq,有一种lengthCompare方法可以返回Seq长度与给定之间的比较Int而不计算长度Seq.
它在特征SeqLike中实现如下:
/** Compares the length of this $coll to a test value.
*
* @param len the test value that gets compared with the length.
* @return A value `x` where
* {{{
* x < 0 if this.length < len
* x == 0 if this.length == len
* x > 0 if this.length > len
* }}}
* The method as implemented here does not …Run Code Online (Sandbox Code Playgroud) 我第一次进行了搜索,花了3-4秒.我第二次运行相同的搜索,花了不到100毫秒(正如预期的那样使用缓存)然后我通过调用" http:// host:port/index/_cache/clear " 清除缓存接下来我运行了同样的搜索,并期望它需要3-4秒,但它花了不到100毫秒
因此清除缓存不起作用?究竟是什么被这个网址清除了?我如何让ES每次都进行原始搜索(即没有缓存)?
我正在做一些负载测试的一部分.