PostCollectionBodyIndexBuckets Property |
Deprecated.
The number of buckets into which indexes using a hash table are split.
The default is 16 and this number has to be a power of 2 and less than
or equal to 1024.
For very large collections one should increase this to avoid long pauses
when the hash table has to be initially built or resized,
since buckets are resized individually and can be initially built in parallel.
For example, 64 might be a sensible value for a collection with 100 000 000 documents.
This option is meaningful for the MMFiles storage engine only.
Namespace:
ArangoDBNetStandard.CollectionApi.Models
Assembly:
ArangoDBNetStandard (in ArangoDBNetStandard.dll) Version: 1.1.0
Syntax public int? IndexBuckets { get; set; }
Public Property IndexBuckets As Integer?
Get
Set
public:
property Nullable<int> IndexBuckets {
Nullable<int> get ();
void set (Nullable<int> value);
}
member IndexBuckets : Nullable<int> with get, set
Property Value
Type:
NullableInt32See Also