create Indexes
abstract suspend fun createIndexes(indexes: List<IndexModel>): Flow<String>
Content copied to clipboard
Create multiple indexes.
Return
a list of the names of the created indexes
Parameters
indexes
the list of indexes
abstract suspend fun createIndexes(indexes: List<IndexModel>, createIndexOptions: CreateIndexOptions): Flow<String>
Content copied to clipboard
Create multiple indexes.
Return
a list of the names of the created indexes
Since
3.6
Parameters
indexes
the list of indexes
create Index Options
options to use when creating indexes
abstract suspend fun createIndexes(clientSession: ClientSession, indexes: List<IndexModel>): Flow<String>
Content copied to clipboard
Create multiple indexes.
Return
a list of the names of the created indexes
Since
3.6
Parameters
client Session
the client session with which to associate this operation
indexes
the list of indexes
abstract suspend fun createIndexes( clientSession: ClientSession, indexes: List<IndexModel>, createIndexOptions: CreateIndexOptions): Flow<String>
Content copied to clipboard
Create multiple indexes.
Return
a list of the names of the created indexes
Since
3.6
Parameters
client Session
the client session with which to associate this operation
indexes
the list of indexes
create Index Options
options to use when creating indexes