dakera-storage 0.10.2

Storage backends for the Dakera AI memory platform
Documentation
pub mod backup;
pub mod cache;
pub mod compaction;
pub mod delta;
pub mod disk_cache;
pub mod export;
pub mod memory;
pub mod object;
pub mod quota;
pub mod redis_cache;
pub mod snapshot;
pub mod tiered;
pub mod traits;
pub mod ttl;
pub mod wal;

pub use backup::{
    BackupConfig, BackupManager, BackupMetadata, BackupScheduler, BackupStats, BackupType,
    CompressionConfig, EncryptionConfig, RestoreStats, RetentionPolicy, VerificationResult,
};
pub use cache::{CacheConfig, CacheStats, CachedStorage, VectorCache};
pub use compaction::{
    CompactionConfig, CompactionJob, CompactionJobState, CompactionManager, CompactionResult,
    GlobalCompactionStats, NamespaceSegmentManager, Segment, SegmentId, SegmentMetadata,
    SegmentState, SegmentStats,
};
pub use delta::{
    compute_delta, ComponentChange, DeltaConfig, DeltaEncoding, DeltaStats, DeltaStoreManager,
    NamespaceDeltaStore, RleChange, UpsertResult, VectorDelta, VersionInfo, VersionedVector,
};
pub use disk_cache::{DiskCache, DiskCacheConfig, DiskCacheStats};
pub use export::{
    DataExporter, DataImporter, ExportConfig, ExportFormat, ExportStats, ImportConfig,
    ImportFormat, ImportStats, VectorRecord,
};
pub use memory::InMemoryStorage;
pub use object::{create_operator, ObjectStorage, ObjectStorageConfig};
pub use opendal::Operator as OpendalOperator;
pub use quota::{QuotaManager, SharedQuotaManager};
pub use redis_cache::{CacheInvalidation, RedisCache, RedisCacheStats, RedisError};
pub use snapshot::{
    RestoreResult, SnapshotConfig, SnapshotManager, SnapshotMetadata, SnapshotType,
};
pub use tiered::{
    StorageTier, TierDistribution, TieredStorage, TieredStorageConfig, TieredStorageStats,
    TieringResult,
};
pub use traits::{IndexStorage, IndexType, VectorStorage};
pub use ttl::{
    calculate_expiration, is_expired, remaining_ttl, NamespaceCleanupStats, NamespaceTtlPolicy,
    TtlAwareStorage, TtlCleanupResult, TtlConfig, TtlManager, TtlService, TtlStats,
};
pub use wal::{WalConfig, WalEntry, WalStats, WalSyncMode, WriteAheadLog};