CollectionApiClientPutLoadIndexesIntoMemoryAsync Method |
Load Indexes into Memory.
Caches all index entries of this collection into the main memory.
Therefore it iterates over all indexes of the collection and
stores the indexed values, not the entire document data,
in memory.
PUT /_api/collection/{collection-name}/loadIndexesIntoMemory
Namespace:
ArangoDBNetStandard.CollectionApi
Assembly:
ArangoDBNetStandard (in ArangoDBNetStandard.dll) Version: 1.1.0
Syntax public virtual Task<PutLoadIndexesIntoMemoryResponse> PutLoadIndexesIntoMemoryAsync(
string collectionName
)
Public Overridable Function PutLoadIndexesIntoMemoryAsync (
collectionName As String
) As Task(Of PutLoadIndexesIntoMemoryResponse)
public:
virtual Task<PutLoadIndexesIntoMemoryResponse^>^ PutLoadIndexesIntoMemoryAsync(
String^ collectionName
)
abstract PutLoadIndexesIntoMemoryAsync :
collectionName : string -> Task<PutLoadIndexesIntoMemoryResponse>
override PutLoadIndexesIntoMemoryAsync :
collectionName : string -> Task<PutLoadIndexesIntoMemoryResponse>
Parameters
- collectionName
- Type: SystemString
Name of the collection.
Return Value
Type:
TaskPutLoadIndexesIntoMemoryResponseImplements
ICollectionApiClientPutLoadIndexesIntoMemoryAsync(String)See Also