internal DeltaCache(PackConfig pc)
 {
     size       = pc.GetDeltaCacheSize();
     entryLimit = pc.GetDeltaCacheLimit();
     queue      = new ReferenceQueue <byte[]>();
 }