After storing items in a MemoryCache, I need to do some cleanup when they get removed. I have set a removed item callback and that works great. My question is, if the app exits abnormally such as from an exception or is terminated during system shutdown, how can I ensure that my callback gets called for each object in the cache?
Additional info: the cached elements contain a running count of calls to an API - one object for each user. I want to commit those counts back to the database when they exit the cache so I don't need to run an update in the database on every call which is the current bottleneck in my process.