mirror of
https://github.com/meilisearch/meilisearch.git
synced 2025-11-12 05:46:27 +00:00
feat: Replace the fnv hashmap by the hashbrown one
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
use std::collections::HashMap;
|
||||
use std::hash::Hash;
|
||||
|
||||
use hashbrown::HashMap;
|
||||
|
||||
pub struct DistinctMap<K> {
|
||||
inner: HashMap<K, usize>,
|
||||
limit: usize,
|
||||
|
||||
Reference in New Issue
Block a user