Gets or sets the number of items retrieved at a time for eaching indexing operation.

Namespace: Simol.Indexing
Assembly: Simol (in Simol.dll) Version: 1.0.0.0

Syntax

C#
public int IndexBatchSize { get; set; }
Visual Basic
Public Property IndexBatchSize As Integer
	Get
	Set
Visual C++
public:
property int IndexBatchSize {
	int get ();
	void set (int value);
}

Field Value

The size of the index batch.

Remarks

Regardless of how high you set this value each batch retrieved for indexing will limited to 1 MB by SimpleDB itself. The default value is DefaultIndexBatchSize

See Also