Juncture Store
Cross-thread persistent key-value storage for Juncture applications. This crate re-exports the Store types from juncture-core::store for convenient access.
Re-exported Types
| Type | Description |
|---|---|
Store |
Storage trait |
MemoryStore |
In-memory implementation |
Item |
Storage item |
FilterExpr |
Query filters |
SearchQuery |
Search parameters |
TTLConfig |
Time-to-live configuration |
IndexConfig |
Index configuration |
EmbeddingFunc |
Vector embedding function |
Usage
use ;
// Create an in-memory store
let store = new;
// Store items
store.put.await?;
// Retrieve items
let item = store.get.await?;
License
Licensed under Apache License, Version 2.0. See LICENSE for details.