Esempio n. 1
0
 public ImageLoader SetMemoryCache(AbstractMemoryCache impl)
 {
     memoryCache = impl;
     return(this);
 }
Esempio n. 2
0
 private static AbstractMemoryCache <ulong, byte> CreateCache() => AbstractMemoryCache <ulong, byte> .Create(
     name : "ResidentCache",
     maxSize : Config.ResidentCache.MaxSize,
     compressed : true
     );