mirror of
https://github.com/meilisearch/meilisearch.git
synced 2025-01-22 11:03:12 +08:00
a30e02c18c
implements: https://github.com/meilisearch/specifications/blob/develop/text/0060-refashion-updates-apis.md linked PR: - #1889 - #1891 - #1892 - #1902 - #1906 - #1911 - #1914 - #1915 - #1916 - #1918 - #1924 - #1925 - #1926 - #1930 - #1936 - #1937 - #1942 - #1944 - #1945 - #1946 - #1947 - #1950 - #1951 - #1957 - #1959 - #1960 - #1961 - #1962 - #1964 - https://github.com/meilisearch/milli/pull/414 - https://github.com/meilisearch/milli/pull/409 - https://github.com/meilisearch/milli/pull/406 - https://github.com/meilisearch/milli/pull/418 - close #1687 - close #1786 - close #1940 - close #1948 - close #1949 - close #1932 - close #1956
36 lines
669 B
Rust
36 lines
669 B
Rust
#[macro_use]
|
|
pub mod error;
|
|
pub mod options;
|
|
|
|
mod analytics;
|
|
pub mod index;
|
|
pub mod index_controller;
|
|
mod index_resolver;
|
|
mod snapshot;
|
|
pub mod tasks;
|
|
mod update_file_store;
|
|
|
|
pub use index_controller::MeiliSearch;
|
|
|
|
pub use milli;
|
|
|
|
mod compression;
|
|
pub mod document_formats;
|
|
|
|
use walkdir::WalkDir;
|
|
|
|
pub trait EnvSizer {
|
|
fn size(&self) -> u64;
|
|
}
|
|
|
|
impl EnvSizer for heed::Env {
|
|
fn size(&self) -> u64 {
|
|
WalkDir::new(self.path())
|
|
.into_iter()
|
|
.filter_map(|entry| entry.ok())
|
|
.filter_map(|entry| entry.metadata().ok())
|
|
.filter(|metadata| metadata.is_file())
|
|
.fold(0, |acc, m| acc + m.len())
|
|
}
|
|
}
|