fix: increase cursor match limit to 1024
This commit is contained in:
parent
f64bd43505
commit
5a085f0c19
1 changed files with 1 additions and 1 deletions
|
@ -1878,7 +1878,7 @@ impl<'a> Iterator for ByteChunks<'a> {
|
||||||
impl QueryCursorHandle {
|
impl QueryCursorHandle {
|
||||||
pub fn new() -> Self {
|
pub fn new() -> Self {
|
||||||
let mut cursor = QUERY_CURSORS.lock().pop().unwrap_or_default();
|
let mut cursor = QUERY_CURSORS.lock().pop().unwrap_or_default();
|
||||||
cursor.set_match_limit(256);
|
cursor.set_match_limit(1024);
|
||||||
QueryCursorHandle(Some(cursor))
|
QueryCursorHandle(Some(cursor))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue