C# 클래스 Couchbase.Management.BucketManager

An intermediate class for doing management operations on a Bucket.
상속: IBucketManager
파일 보기 프로젝트 열기: couchbase/couchbase-net-client

공개 메소드들

메소드 설명
BuildN1qlDeferredIndexes ( ) : IList

Builds any indexes that have been created with the "defer" flag and are still in the "pending" state on the current IBucket.

BuildN1qlDeferredIndexesAsync ( ) : Task

Builds any indexes that have been created with the "defered" flag and are still in the "pending" state asynchronously.

CreateN1qlIndex ( string indexName, bool defer = false ) : IResult

Creates a secondary index on the current IBucket reference.

CreateN1qlIndexAsync ( string indexName, bool defer = false ) : Task

Creates a secondary index with optional fields asynchronously.

CreateN1qlPrimaryIndex ( bool defer = false ) : IResult

Creates the primary index for the current bucket if it doesn't already exist.

CreateN1qlPrimaryIndex ( string customName, bool defer = false ) : IResult

Creates a primary index on the current IBucket reference.

CreateN1qlPrimaryIndexAsync ( bool defer = false ) : Task

Creates a primary index on the current IBucket asynchronously.

CreateN1qlPrimaryIndexAsync ( string customName, bool defer = false ) : Task

Creates a named primary index on the current IBucket asynchronously.

Dispose ( ) : void
DropN1qlIndex ( string name ) : IResult

Drops a secondary index on the current IBucket reference.

DropN1qlIndexAsync ( string name ) : Task

Drops an index by name asynchronously.

DropN1qlPrimaryIndex ( ) : IResult

Drops the primary index on the current IBucket.

DropN1qlPrimaryIndex ( string customName ) : IResult

Drops the named primary index if it exists on the current IBucket.

DropN1qlPrimaryIndexAsync ( ) : Task

Drops the primary index of the current IBucket asynchronously.

DropNamedPrimaryIndexAsync ( string customName ) : Task

Drops the named primary index on the current IBucket asynchronously.

Flush ( ) : IResult

Destroys all documents stored within a bucket. This functionality must also be enabled within the server-side bucket settings for safety reasons.

FlushAsync ( ) : Task

Destroys all documents stored within a bucket. This functionality must also be enabled within the server-side bucket settings for safety reasons.

GetDesignDocument ( string designDocName ) : IResult

Retrieves the contents of a design document.

GetDesignDocumentAsync ( string designDocName ) : Task>

Retrieves the contents of a design document.

GetDesignDocumentsAsync ( bool includeDevelopment = false ) : Task>

Lists all existing design documents.

InsertDesignDocument ( string designDocName, string designDoc ) : IResult

Inserts a design document containing a number of views.

InsertDesignDocumentAsync ( string designDocName, string designDoc ) : Task

Inserts a design document containing a number of views.

ListN1qlIndexes ( ) : IndexResult

Lists the indexes for the current IBucket.

ListN1qlIndexesAsync ( ) : Task

Lists the indexes for a the current IBucket asynchronously.

RemoveDesignDocument ( string designDocName ) : IResult

Removes a design document.

RemoveDesignDocumentAsync ( string designDocName ) : Task

Removes a design document.

UpdateDesignDocument ( string designDocName, string designDoc ) : IResult

Updates a design document containing a number of views.

UpdateDesignDocumentAsync ( string designDocName, string designDoc ) : Task

Updates a design document containing a number of views.

WatchN1qlIndexes ( List indexNames, System.TimeSpan watchTimeout ) : IResult>

Watches all given indexes, polling the query service until they are "online" or the has expired.

WatchN1qlIndexesAsync ( List indexNames, System.TimeSpan watchTimeout ) : Task>>

Watches all given indexes, asynchronously polling the query service until they are "online" or the has expired.

보호된 메소드들

메소드 설명
ExecuteIndexRequest ( string statement ) : IResult

Executes the index request syncronously.

ExecuteIndexRequestAsync ( string statement ) : Task

Executes the index request asynchronously.

비공개 메소드들

메소드 설명
BucketManager ( IBucket bucket, Couchbase.Configuration.Client.ClientConfiguration clientConfig, IDataMapper mapper, HttpClient httpClient, string username, string password ) : Common.Logging
GetDesignDocuments ( bool includeDevelopment = false ) : IResult
GetResult ( HttpResponseMessage httpResponseMessage ) : Task
GetResultAsString ( HttpResponseMessage httpResponseMessage ) : Task>
SetHeaders ( HttpRequestMessage request, Uri uri, string mediaType ) : void
ShouldRetryWatch ( IndexResult result, List indexNames ) : bool
UseSsl ( ) : bool

메소드 상세

BuildN1qlDeferredIndexes() 공개 메소드

Builds any indexes that have been created with the "defer" flag and are still in the "pending" state on the current IBucket.
public BuildN1qlDeferredIndexes ( ) : IList
리턴 IList

BuildN1qlDeferredIndexesAsync() 공개 메소드

Builds any indexes that have been created with the "defered" flag and are still in the "pending" state asynchronously.
public BuildN1qlDeferredIndexesAsync ( ) : Task
리턴 Task

CreateN1qlIndex() 공개 메소드

Creates a secondary index on the current IBucket reference.
public CreateN1qlIndex ( string indexName, bool defer = false ) : IResult
indexName string Name of the index to create.
defer bool If set to true, the N1QL query will use the "with defer" syntax and the index will simply be "pending" (prior to 4.5) or "deferred" (at and after 4.5, see MB-14679).
리턴 IResult

CreateN1qlIndexAsync() 공개 메소드

Creates a secondary index with optional fields asynchronously.
public CreateN1qlIndexAsync ( string indexName, bool defer = false ) : Task
indexName string Name of the index.
defer bool If set to true, the N1QL query will use the "with defer" syntax and the index will simply be "pending" (prior to 4.5) or "deferred" (at and after 4.5, see MB-14679).
리턴 Task

CreateN1qlPrimaryIndex() 공개 메소드

Creates the primary index for the current bucket if it doesn't already exist.
public CreateN1qlPrimaryIndex ( bool defer = false ) : IResult
defer bool If set to true, the N1QL query will use the "with defer" syntax and the index will simply be "pending" (prior to 4.5) or "deferred" (at and after 4.5, see MB-14679).
리턴 IResult

CreateN1qlPrimaryIndex() 공개 메소드

Creates a primary index on the current IBucket reference.
public CreateN1qlPrimaryIndex ( string customName, bool defer = false ) : IResult
customName string The name of the index.
defer bool If set to true, the N1QL query will use the "with defer" syntax and the index will simply be "pending" (prior to 4.5) or "deferred" (at and after 4.5, see MB-14679).
리턴 IResult

CreateN1qlPrimaryIndexAsync() 공개 메소드

Creates a primary index on the current IBucket asynchronously.
public CreateN1qlPrimaryIndexAsync ( bool defer = false ) : Task
defer bool If set to true, the N1QL query will use the "with defer" syntax and the index will simply be "pending" (prior to 4.5) or "deferred" (at and after 4.5, see MB-14679).
리턴 Task

CreateN1qlPrimaryIndexAsync() 공개 메소드

Creates a named primary index on the current IBucket asynchronously.
public CreateN1qlPrimaryIndexAsync ( string customName, bool defer = false ) : Task
customName string The name of the custom index.
defer bool If set to true, the N1QL query will use the "with defer" syntax and the index will simply be "pending" (prior to 4.5) or "deferred" (at and after 4.5, see MB-14679).
리턴 Task

Dispose() 공개 메소드

public Dispose ( ) : void
리턴 void

DropN1qlIndex() 공개 메소드

Drops a secondary index on the current IBucket reference.
public DropN1qlIndex ( string name ) : IResult
name string The name of the secondary index to drop.
리턴 IResult

DropN1qlIndexAsync() 공개 메소드

Drops an index by name asynchronously.
public DropN1qlIndexAsync ( string name ) : Task
name string The name of the index to drop.
리턴 Task

DropN1qlPrimaryIndex() 공개 메소드

Drops the primary index on the current IBucket.
public DropN1qlPrimaryIndex ( ) : IResult
리턴 IResult

DropN1qlPrimaryIndex() 공개 메소드

Drops the named primary index if it exists on the current IBucket.
public DropN1qlPrimaryIndex ( string customName ) : IResult
customName string Name of primary index.
리턴 IResult

DropN1qlPrimaryIndexAsync() 공개 메소드

Drops the primary index of the current IBucket asynchronously.
public DropN1qlPrimaryIndexAsync ( ) : Task
리턴 Task

DropNamedPrimaryIndexAsync() 공개 메소드

Drops the named primary index on the current IBucket asynchronously.
public DropNamedPrimaryIndexAsync ( string customName ) : Task
customName string Name of the primary index to drop.
리턴 Task

ExecuteIndexRequest() 보호된 메소드

Executes the index request syncronously.
protected ExecuteIndexRequest ( string statement ) : IResult
statement string The statement.
리턴 IResult

ExecuteIndexRequestAsync() 보호된 메소드

Executes the index request asynchronously.
protected ExecuteIndexRequestAsync ( string statement ) : Task
statement string The statement.
리턴 Task

Flush() 공개 메소드

Destroys all documents stored within a bucket. This functionality must also be enabled within the server-side bucket settings for safety reasons.
public Flush ( ) : IResult
리턴 IResult

FlushAsync() 공개 메소드

Destroys all documents stored within a bucket. This functionality must also be enabled within the server-side bucket settings for safety reasons.
public FlushAsync ( ) : Task
리턴 Task

GetDesignDocument() 공개 메소드

Retrieves the contents of a design document.
public GetDesignDocument ( string designDocName ) : IResult
designDocName string The name of the design document.
리턴 IResult

GetDesignDocumentAsync() 공개 메소드

Retrieves the contents of a design document.
public GetDesignDocumentAsync ( string designDocName ) : Task>
designDocName string The name of the design document.
리턴 Task>

GetDesignDocumentsAsync() 공개 메소드

Lists all existing design documents.
public GetDesignDocumentsAsync ( bool includeDevelopment = false ) : Task>
includeDevelopment bool Whether or not to show development design documents in the results.
리턴 Task>

InsertDesignDocument() 공개 메소드

Inserts a design document containing a number of views.
public InsertDesignDocument ( string designDocName, string designDoc ) : IResult
designDocName string The name of the design document.
designDoc string A design document JSON string.
리턴 IResult

InsertDesignDocumentAsync() 공개 메소드

Inserts a design document containing a number of views.
public InsertDesignDocumentAsync ( string designDocName, string designDoc ) : Task
designDocName string The name of the design document.
designDoc string A design document JSON string.
리턴 Task

ListN1qlIndexes() 공개 메소드

Lists the indexes for the current IBucket.
public ListN1qlIndexes ( ) : IndexResult
리턴 IndexResult

ListN1qlIndexesAsync() 공개 메소드

Lists the indexes for a the current IBucket asynchronously.
public ListN1qlIndexesAsync ( ) : Task
리턴 Task

RemoveDesignDocument() 공개 메소드

Removes a design document.
public RemoveDesignDocument ( string designDocName ) : IResult
designDocName string The name of the design document.
리턴 IResult

RemoveDesignDocumentAsync() 공개 메소드

Removes a design document.
public RemoveDesignDocumentAsync ( string designDocName ) : Task
designDocName string The name of the design document.
리턴 Task

UpdateDesignDocument() 공개 메소드

Updates a design document containing a number of views.
public UpdateDesignDocument ( string designDocName, string designDoc ) : IResult
designDocName string The name of the design document.
designDoc string A design document JSON string.
리턴 IResult

UpdateDesignDocumentAsync() 공개 메소드

Updates a design document containing a number of views.
public UpdateDesignDocumentAsync ( string designDocName, string designDoc ) : Task
designDocName string The name of the design document.
designDoc string A design document JSON string.
리턴 Task

WatchN1qlIndexes() 공개 메소드

Watches all given indexes, polling the query service until they are "online" or the has expired.
public WatchN1qlIndexes ( List indexNames, System.TimeSpan watchTimeout ) : IResult>
indexNames List The list of indexes to watch for.
watchTimeout System.TimeSpan The timeout for the watch.
리턴 IResult>

WatchN1qlIndexesAsync() 공개 메소드

Watches all given indexes, asynchronously polling the query service until they are "online" or the has expired.
public WatchN1qlIndexesAsync ( List indexNames, System.TimeSpan watchTimeout ) : Task>>
indexNames List The list of indexes to watch for.
watchTimeout System.TimeSpan The timeout for the watch.
리턴 Task>>