MCPcopy Create free account
hub / github.com/IceClusters/icmysql / DeleteCache

Function DeleteCache

src/db/debug/Debug.js:46–52  ·  view source on GitHub ↗
(table, hash)

Source from the content-addressed store, hash-verified

44}
45
46function DeleteCache(table, hash) {
47 cache.forEach((item, index) => {
48 if (item.table == table && item.hash == hash) {
49 return cache.splice(index, 1);
50 }
51 });
52}
53
54function GetResources() {
55 var resources = [];

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected