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

Method remove

graphlite/src/storage/persistent/sled.rs:35–40  ·  view source on GitHub ↗
(&self, key: &[u8])

Source from the content-addressed store, hash-verified

33 }
34
35 fn remove(&self, key: &[u8]) -> StorageResult<()> {
36 self.tree
37 .remove(key)
38 .map_err(|e| StorageDriverError::BackendSpecific(e.to_string()))?;
39 Ok(())
40 }
41
42 fn contains_key(&self, key: &[u8]) -> StorageResult<bool> {
43 self.tree

Callers 15

record_event_resultMethod · 0.45
remove_dependencyMethod · 0.45
record_eventMethod · 0.45
getMethod · 0.45
evict_if_neededMethod · 0.45
update_indicesMethod · 0.45
getMethod · 0.45
evict_if_neededMethod · 0.45
accessMethod · 0.45
remove_lruMethod · 0.45
getMethod · 0.45
evict_l1_if_neededMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected