MCPcopy Create free account
hub / github.com/DeusData/codebase-memory-mcp / get_cache_dir

Function get_cache_dir

src/cli/cli.c:6304–6312  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6302/* ── Index management ─────────────────────────────────────────── */
6303
6304static const char *get_cache_dir(const char *home_dir) {
6305 if (!home_dir) {
6306 home_dir = cbm_get_home_dir();
6307 }
6308 if (!home_dir) {
6309 return NULL;
6310 }
6311 return cbm_resolve_cache_dir();
6312}
6313
6314int cbm_list_indexes(const char *home_dir) {
6315 const char *cache_dir = get_cache_dir(home_dir);

Callers 3

cbm_list_indexesFunction · 0.85
cbm_remove_indexesFunction · 0.85
count_db_indexesFunction · 0.85

Calls 2

cbm_get_home_dirFunction · 0.85
cbm_resolve_cache_dirFunction · 0.85

Tested by

no test coverage detected