Keyspace
class Keyspace(bucket: String, @SinceCouchbase(value = "7.0" ) scope: String, @SinceCouchbase(value = "7.0" ) collection: String)
Content copied to clipboard
Identifies a collection by its fully-qualified path: bucket name, scope name, and collection name.
Called a "keyspace" because Couchbase document IDs (keys) are unique within a collection.
Constructors
Link copied to clipboard
fun Keyspace(bucket: String, @SinceCouchbase(value = "7.0" ) scope: String = DEFAULT_SCOPE, @SinceCouchbase(value = "7.0" ) collection: String = DEFAULT_COLLECTION)
Content copied to clipboard