MCPcopy Create free account
hub / github.com/GraphLite-AI/GraphLite / CacheParameter

Enum CacheParameter

graphlite/src/cache/result_cache.rs:26–32  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

24/// Cached parameter value
25#[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
26pub enum CacheParameter {
27 String(String),
28 Integer(i64),
29 Float(u64), // Store as bits for exact comparison
30 Boolean(bool),
31 Null,
32}
33
34impl CacheKey for QueryCacheKey {
35 fn cache_key(&self) -> String {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected