pub type RocksDb = rust_rocksdb::DBWithThreadMode<rust_rocksdb::MultiThreaded>;
pub mod cf_ops;
pub mod codec;
pub mod collection;
pub mod columnar;
pub mod database;
pub mod document;
pub mod document_cache;
pub mod engine;
pub mod geo;
pub mod http_client;
pub mod index;
pub mod pending_drops;
pub mod protected;
pub mod query_cache;
pub mod schema;
pub mod semantic_query_cache;
pub mod serializer;
pub mod vector;
pub use collection::{
Collection, CollectionStats, DiskUsage, FusionMethod, HybridSearchOptions, HybridSearchResult,
};
pub use columnar::{
AggregateOp, ColumnDef, ColumnFilter, ColumnType, ColumnarCollection, ColumnarCollectionMeta,
ColumnarStats, CompressionType,
};
pub use database::Database;
pub use document::Document;
pub use engine::StorageEngine;
pub use geo::{distance_meters, GeoIndex, GeoIndexStats, GeoPoint};
pub use index::{
bm25_score, calculate_idf, deserialize_fields, extract_field_value, generate_ngrams,
levenshtein_distance, ngram_similarity, normalize_text, tokenize, FulltextMatch, Index,
IndexKind, IndexRef, IndexSpec, IndexStats, IndexType, TtlIndex, TtlIndexStats,
VectorIndexConfig, VectorIndexStats, VectorMetric, BM25_B, BM25_K1, NGRAM_SIZE,
};
pub use protected::{is_protected_collection, protected_collection_error, PROTECTED_COLLECTIONS};
pub use schema::{
CollectionSchema, SchemaCompilationError, SchemaValidationError, SchemaValidationMode,
SchemaValidator, ValidationResult, ValidationViolation,
};
pub use vector::{VectorIndex, VectorSearchResult};