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