LRU Cache implemented anywhere?

Hi Demis

Does ServiceStack have an implementation or utility for an in memory LRU cache?

I have the situation where I need to serve files from a web service and would prefer to cache some files in some kind of cache that is not time based.

I am always surprised by the things that you have implemented, so just wanted to check :smile:

No just the In Memory MemoryCacheClient which is only evicted on Key Expiration.

I can potentially make use of MemoryCacheClient, but does it support a sliding expiration?

No, just supports normal key expiration like all other Cache Clients.