dylan
1
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 
mythz
2
No just the In Memory MemoryCacheClient
which is only evicted on Key Expiration.
dylan
3
I can potentially make use of MemoryCacheClient
, but does it support a sliding expiration?
mythz
4
No, just supports normal key expiration like all other Cache Clients.