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

Function get_cache_dir

src/cli/cli.c:6310–6318  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6308/* ── Index management ─────────────────────────────────────────── */
6309
6310static const char *get_cache_dir(const char *home_dir) {
6311 if (!home_dir) {
6312 home_dir = cbm_get_home_dir();
6313 }
6314 if (!home_dir) {
6315 return NULL;
6316 }
6317 return cbm_resolve_cache_dir();
6318}
6319
6320int cbm_list_indexes(const char *home_dir) {
6321 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