BTreeBaseKey, 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 committed and/or flushed to disk or when the array is full.
The array size is by default currently
BTreeAddFastTransientBatchSize 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
)
Public Sub AddFast (
key As Key
)
public:
void AddFast(
Key key
)
member AddFast :
key : 'Key -> unit
Parameters
- key
- Type: Key
The object being added
See Also