PHP Conference Japan 2024

MongoDB\Driver\Server::executeReadWriteCommand

(mongodb >=1.4.0)

MongoDB\Driver\Server::executeReadWriteCommand执行在此服务器上进行读写操作的数据库命令

描述

final public MongoDB\Driver\Server::executeReadWriteCommand(string $db, MongoDB\Driver\Command $command, ?array $options = null): MongoDB\Driver\Cursor

在此服务器上执行命令。

此方法将应用特定于读写命令的逻辑(例如 » aggregate)。"readConcern""writeConcern" 选项的默认值将从活动事务(由 "session" 选项指示)推断,然后从 连接URI 推断。

参数

db (string)

要执行命令的数据库名称。

command (MongoDB\Driver\Command)

要执行的命令。

选项

选项
选项 类型 描述
readConcern MongoDB\Driver\ReadConcern

要应用于操作的读取关注点。

此选项在MongoDB 3.2+ 中可用,如果为旧版服务器指定此选项,则会在执行时导致异常。

session MongoDB\Driver\Session

要与操作关联的会话。

writeConcern MongoDB\Driver\WriteConcern

要应用于操作的写入关注点。

警告

如果使用正在进行事务的 "session",则不能指定 "readConcern""writeConcern" 选项。这将导致抛出 MongoDB\Driver\Exception\InvalidArgumentException。相反,您应该在使用 MongoDB\Driver\Session::startTransaction() 创建事务时设置这两个选项。

返回值

成功时返回 MongoDB\Driver\Cursor

错误/异常

变更日志

版本 描述
PECL mongodb 1.4.4 如果 "session" 选项与未确认的写入关注点一起使用,则会抛出 MongoDB\Driver\Exception\InvalidArgumentException

备注

注意: 确保服务器能够执行写入操作是调用者的责任。例如,在辅助节点(不包括其“本地”数据库)上执行写入操作将失败。

参见

添加备注

用户贡献的笔记

此页面没有用户贡献的笔记。
To Top