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

Function get_cache_dir

src/cli/cli.c:6366–6374  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6364/* ── Index management ─────────────────────────────────────────── */
6365
6366static const char *get_cache_dir(const char *home_dir) {
6367 if (!home_dir) {
6368 home_dir = cbm_get_home_dir();
6369 }
6370 if (!home_dir) {
6371 return NULL;
6372 }
6373 return cbm_resolve_cache_dir();
6374}
6375
6376int cbm_list_indexes(const char *home_dir) {
6377 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