Interface IQueryIndexManager
Assembly: Couchbase.NetClient.dll
Syntax
public interface IQueryIndexManager
Methods
|
Edit this page
View Source
BuildDeferredIndexesAsync(string, BuildDeferredQueryIndexOptions?)
Declaration
Task BuildDeferredIndexesAsync(string bucketName, BuildDeferredQueryIndexOptions? options = null)
Parameters
Returns
|
Edit this page
View Source
CreateIndexAsync(string, string, IEnumerable<string>, CreateQueryIndexOptions?)
Declaration
Task CreateIndexAsync(string bucketName, string indexName, IEnumerable<string> indexKeys, CreateQueryIndexOptions? options = null)
Parameters
Returns
|
Edit this page
View Source
CreatePrimaryIndexAsync(string, CreatePrimaryQueryIndexOptions?)
Declaration
Task CreatePrimaryIndexAsync(string bucketName, CreatePrimaryQueryIndexOptions? options = null)
Parameters
Returns
|
Edit this page
View Source
DropIndexAsync(string, string, DropQueryIndexOptions?)
Declaration
Task DropIndexAsync(string bucketName, string indexName, DropQueryIndexOptions? options = null)
Parameters
Returns
|
Edit this page
View Source
DropPrimaryIndexAsync(string, DropPrimaryQueryIndexOptions?)
Declaration
Task DropPrimaryIndexAsync(string bucketName, DropPrimaryQueryIndexOptions? options = null)
Parameters
Returns
|
Edit this page
View Source
GetAllIndexesAsync(string, GetAllQueryIndexOptions?)
Declaration
Task<IEnumerable<QueryIndex>> GetAllIndexesAsync(string bucketName, GetAllQueryIndexOptions? options = null)
Parameters
Returns
|
Edit this page
View Source
WatchIndexesAsync(string, IEnumerable<string>, WatchQueryIndexOptions?)
Declaration
Task WatchIndexesAsync(string bucketName, IEnumerable<string> indexNames, WatchQueryIndexOptions? options = null)
Parameters
Returns
Extension Methods