add the exhaustive nb hits to be ISO, currently it's always set to false

This commit is contained in:
tamo 2021-03-22 18:41:33 +01:00
parent 1640d9ea91
commit 91089db444
No known key found for this signature in database
GPG Key ID: B9DB60424F4F92F3

View File

@ -41,6 +41,7 @@ pub struct SearchQuery {
pub struct SearchResult {
pub hits: Vec<Map<String, Value>>,
pub nb_hits: u64,
pub exhaustive_nb_hits: bool, // currently this field only exist to be ISO and is always alse
pub query: String,
pub limit: usize,
pub offset: usize,
@ -107,6 +108,7 @@ impl Index {
};
let result = SearchResult {
exhaustive_nb_hits: false, // not implemented, we use it to be ISO
hits: documents,
nb_hits,
query: query.q.clone().unwrap_or_default(),