示例#1
0
 public PostingListVarIntDeltaWriter(IPersistentStorage storage)
 {
     this.buffer            = new byte[BlockSize + 4 * VarInt.GetByteSize(ulong.MaxValue)];
     this.persistentStorage = storage;
 }
示例#2
0
 public DeltaVarIntListWriter(IPersistentStorage storage)
 {
     this.buffer            = new byte[BlockSize + VarInt.GetByteSize(ulong.MaxValue)];
     this.persistentStorage = storage;
 }