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

Function get_cache_dir

src/cli/cli.c:6387–6395  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6385/* ── Index management ─────────────────────────────────────────── */
6386
6387static const char *get_cache_dir(const char *home_dir) {
6388 if (!home_dir) {
6389 home_dir = cbm_get_home_dir();
6390 }
6391 if (!home_dir) {
6392 return NULL;
6393 }
6394 return cbm_resolve_cache_dir();
6395}
6396
6397int cbm_list_indexes(const char *home_dir) {
6398 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