Lucene.Net.Index.DocumentsWriterDeleteQueue.AddBinaryUpdate C# (CSharp) Метод

AddBinaryUpdate() приватный Метод

private AddBinaryUpdate ( BinaryDocValuesUpdate update ) : void
update BinaryDocValuesUpdate
Результат void
        internal void AddBinaryUpdate(BinaryDocValuesUpdate update)
        {
            Add(new BinaryUpdateNode(update));
            TryApplyGlobalSlice();
        }

Usage Example

Пример #1
0
 internal bool UpdateBinaryDocValue(Term term, string field, BytesRef value)
 {
     lock (this)
     {
         DocumentsWriterDeleteQueue deleteQueue = this.deleteQueue;
         deleteQueue.AddBinaryUpdate(new BinaryDocValuesUpdate(term, field, value));
         flushControl.DoOnDelete();
         return(ApplyAllDeletes(deleteQueue));
     }
 }
All Usage Examples Of Lucene.Net.Index.DocumentsWriterDeleteQueue::AddBinaryUpdate