Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion Couchbase/Bucket.php
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,9 @@ public function name(): string
* @param string $viewName the view to use for the query
* @param ViewOptions|null $options the options to use when executing the query
*
* @return ViewResult
* @deprecated Views are deprecated in Couchbase Server 7.0+, and will be removed from a future server version.
* Views are not compatible with the Magma storage engine. Instead of views, use indexes and queries using the
* Index Service (GSI) and the Query Service (SQL++).
* @since 4.0.0
*/
public function viewQuery(string $designDoc, string $viewName, ?ViewOptions $options = null): ViewResult
Expand Down Expand Up @@ -152,6 +154,9 @@ public function collections(): CollectionManager
*
* @return ViewIndexManager
* @throws UnsupportedOperationException
* @deprecated Views are deprecated in Couchbase Server 7.0+, and will be removed from a future server version.
* Views are not compatible with the Magma storage engine. Instead of views, use indexes and queries using the
* Index Service (GSI) and the Query Service (SQL++).
* @since 4.0.0
*/
public function viewIndexes(): ViewIndexManager
Expand Down