BTreeMapBaseKey, ValueAddFast Method |
Adds an element to an array of to be added objects.
The objects in this array are added when a call to
FlushTransients is triggered by multiple events such as calling
Count and when collection is commited and/or flushed to disk or when the array is full.
The array size is by default currently
[!:BTreeBase<Key, Value>.transientBatchBufferDefaultSize] but you can get/set the desired size with
TransientBatchSize
Namespace:
VelocityDb.Collection.BTree
Assembly:
VelocityDb (in VelocityDb.dll) Version: 11.1.0.0 (11.1)
Syntax public void AddFast(
Key key,
Value value
)
Public Sub AddFast (
key As Key,
value As Value
)
public:
void AddFast(
Key key,
Value value
)
member AddFast :
key : 'Key *
value : 'Value -> unit
Parameters
- key
- Type: Key
The object beeing added - value
- Type: Value
The associated value added
See Also