feat: Pre-compute matches query index groups

This commit is contained in:
Clément Renault
2019-01-06 11:11:55 +01:00
parent 40ab9e7a55
commit 039a9a4cc7
8 changed files with 86 additions and 41 deletions

View File

@ -116,7 +116,7 @@ where D: Deref<Target=DB>,
}
}
matches.into_iter().map(|(id, matches)| Document::from_matches(id, matches)).collect()
matches.into_iter().map(|(id, m)| Document::from_unsorted_matches(id, m)).collect()
}
}