Package com.couchbase.client.java.query
Class Index
java.lang.Object
com.couchbase.client.java.query.Index
@Experimental @Public public class Index extends Object
DSL starting point for creating and managing N1QL indexes.
- Since:
- 2.2
- Author:
- Simon Baslé
-
Field Summary
Fields Modifier and Type Field Description static String
PRIMARY_NAME
The expected name given to the primary indexes by the server. -
Method Summary
Modifier and Type Method Description static BuildIndexPath
buildIndex()
Triggers building of indexes that have been deferred.static OnPath
createIndex(String indexName)
Create a new secondary index.static OnPrimaryPath
createNamedPrimaryIndex(String customPrimaryName)
Create a new primary index with a custom name.static OnPrimaryPath
createPrimaryIndex()
Create a new primary index.static UsingPath
dropIndex(String keyspace, String indexName)
Drop a secondary index in the given keyspace.static UsingPath
dropIndex(String namespace, String keyspace, String indexName)
Drop a secondary index in the given namespace:keyspace.static UsingPath
dropNamedPrimaryIndex(String keyspace, String customPrimaryName)
Drop the primary index in the given keyspace that has a custom name.static UsingPath
dropNamedPrimaryIndex(String namespace, String keyspace, String customPrimaryName)
Drop the primary index of the given namespace:keyspace that has a custom name.static UsingPath
dropPrimaryIndex(String keyspace)
Drop the primary index in the given keyspace.static UsingPath
dropPrimaryIndex(String namespace, String keyspace)
Drop the primary index of the given namespace:keyspace.
-
Field Details
-
PRIMARY_NAME
The expected name given to the primary indexes by the server.- See Also:
- Constant Field Values
-
-
Method Details
-
createIndex
Create a new secondary index.- Parameters:
indexName
- the name of the new index (will be escaped).
-
createPrimaryIndex
Create a new primary index. -
createNamedPrimaryIndex
Create a new primary index with a custom name. -
buildIndex
Triggers building of indexes that have been deferred. Note that this feature is currently only supported for GSI indexes, so the finalusing clause
should be explicit and use theGSI index type
. -
dropIndex
Drop a secondary index in the given namespace:keyspace.- Parameters:
namespace
- the namespace prefix (will be escaped).keyspace
- the keyspace (bucket, will be escaped).indexName
- the name of the index to be dropped (will be escaped).
-
dropIndex
Drop a secondary index in the given keyspace.- Parameters:
keyspace
- the keyspace (bucket, will be escaped).indexName
- the name of the index to be dropped (will be escaped).
-
dropPrimaryIndex
Drop the primary index of the given namespace:keyspace.- Parameters:
namespace
- the namespace prefix (will be escaped).keyspace
- the keyspace (bucket, will be escaped).- See Also:
if the primary index name has been customized.
-
dropPrimaryIndex
Drop the primary index in the given keyspace.- Parameters:
keyspace
- the keyspace (bucket, will be escaped).- See Also:
if the primary index name has been customized.
-
dropNamedPrimaryIndex
public static UsingPath dropNamedPrimaryIndex(String namespace, String keyspace, String customPrimaryName)Drop the primary index of the given namespace:keyspace that has a custom name.- Parameters:
namespace
- the namespace prefix (will be escaped).keyspace
- the keyspace (bucket, will be escaped).customPrimaryName
- the custom name for the primary index (will be escaped).
-
dropNamedPrimaryIndex
Drop the primary index in the given keyspace that has a custom name.- Parameters:
keyspace
- the keyspace (bucket, will be escaped).customPrimaryName
- the custom name for the primary index (will be escaped).
-