Uses of Class
com.couchbase.client.java.manager.SearchIndex
-
Packages that use SearchIndex Package Description com.couchbase.client.java.manager -
-
Uses of SearchIndex in com.couchbase.client.java.manager
Methods in com.couchbase.client.java.manager that return SearchIndex Modifier and Type Method Description static SearchIndex
SearchIndex. from(String name, SearchIndex index)
Creates another index from the given one with its properties, but clears out all state like the UUID so it can be used to create a new one.static SearchIndex
SearchIndex. fromJson(byte[] raw)
SearchIndex
SearchIndexManager. get(String name)
Fetches an already created index from the server.Methods in com.couchbase.client.java.manager that return types with arguments of type SearchIndex Modifier and Type Method Description CompletableFuture<SearchIndex>
AsyncSearchIndexManager. get(String name)
Fetches an already created index from the server.Mono<SearchIndex>
ReactiveSearchIndexManager. get(String name)
Fetches an already created index from the server.Methods in com.couchbase.client.java.manager with parameters of type SearchIndex Modifier and Type Method Description static SearchIndex
SearchIndex. from(String name, SearchIndex index)
Creates another index from the given one with its properties, but clears out all state like the UUID so it can be used to create a new one.CompletableFuture<Void>
AsyncSearchIndexManager. insert(SearchIndex index)
Inserts a search index which does not exist already.Mono<Void>
ReactiveSearchIndexManager. insert(SearchIndex index)
Inserts a search index which does not exist already.void
SearchIndexManager. insert(SearchIndex index)
Inserts a search index which does not exist already.CompletableFuture<Void>
AsyncSearchIndexManager. replace(SearchIndex index)
Updates a previously loaded index with new params.Mono<Void>
ReactiveSearchIndexManager. replace(SearchIndex index)
Updates a previously loaded index with new params.void
SearchIndexManager. replace(SearchIndex index)
Updates a previously loaded index with new params.
-