Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,8 @@ members = [
"crates/ruvector-timesfm",
# Speculative ANN search: draft-verify with adaptive candidate multiplier (ADR-272)
"crates/ruvector-speculative-ann",
# Semantic query cache for ANN: HNSW-indexed cache layer, adaptive cosine threshold, invalidation (ADR-296)
"crates/ruvector-semantic-cache",
]
resolver = "2"

Expand Down
21 changes: 21 additions & 0 deletions crates/ruvector-semantic-cache/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
[package]
name = "ruvector-semantic-cache"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
description = "Semantic query cache for ANN search: HNSW-indexed cache layer that short-circuits corpus scans when a similar query was seen recently, with adaptive similarity thresholds and invalidation on mutation"
readme = "README.md"
keywords = ["vector-search", "semantic-cache", "ann", "agent-memory", "ruvector"]
categories = ["algorithms", "data-structures", "caching"]

[[bin]]
name = "benchmark"
path = "src/bin/benchmark.rs"

[dependencies]

[lints.rust]
dead_code = "allow"
unused_variables = "allow"
Loading
Loading