PHP7中的MongoDB\Driver\Manager

这个MongoDB中的操作入口类,包括了连接MongoDB服务器、write、query的操作.

final public MongoDB\Driver\Manager::__construct ( string $uri [, array $options [, array $driverOptions ]] )

构造函数,连接MongoDB,连接方式有很多种
可参考:http://www.runoob.com/mongodb/mongodb-connections.html    中的连接实例。

# 连接表达式
mongodb://[username:password@]host1[:port1][,host2[:port2],..
.[,hostN[:portN]]][/[database][?options]]

final public MongoDB\Driver\WriteResult MongoDB\Driver\Manager::executeBulkWrite ( string $namespace , MongoDB\Driver\BulkWrite $bulk [, MongoDB\Driver\WriteConcern $writeConcern ] )
执行一个或者多个写入的操作,参数分别为$collection、$bulk和$writeConcern,返回结果$writeResult,其中$cllection的格式为 $dbName.$collectionName

 

 

发表评论

电子邮件地址不会被公开。 必填项已用*标注

您可以使用这些HTML标签和属性: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>