void add_to_cache_uint64(struct CacheHeader *cache, uint64_t key, void *value)
Adds a value to the cache with a uint64_t key, evicting LRU if full.
Single hash entry in the in-memory cache.
void * value
Opaque value pointer associated with key.
uint64_t key
64-bit integer key (unique within the cache).
UT_hash_handle hh
uthash handle (must remain per uthash docs).