public void Delete(byte[]?key)
 {
     MemoryTrackingStore.AtomicUpdate(ref writeBatchMap, key, default(None));
 }
 public void Put(byte[]?key, byte[] value)
 {
     MemoryTrackingStore.AtomicUpdate(ref writeBatchMap, key, value);
 }