PHP 클래스 Phalcon\Db\Adapter\MongoDB\Operation\CreateCollection

또한 보기: MongoDB\Database::createCollection()
또한 보기: http://docs.mongodb.org/manual/reference/command/create/
상속: implements Phalcon\Db\Adapter\MongoDB\Operation\Executable
파일 보기 프로젝트 열기: phalcon/incubator 1 사용 예제들

공개 메소드들

메소드 설명
__construct ( string $databaseName, string $collectionName, array $options = [] ) Constructs a create command.
execute ( MongoDB\Driver\Server $server ) : array | object Execute the operation.

비공개 메소드들

메소드 설명
createCommand ( ) : MongoDB\Driver\Command Create the create command.

메소드 상세

__construct() 공개 메소드

Supported options: * autoIndexId (boolean): Specify false to disable the automatic creation of an index on the _id field. For replica sets, this option cannot be false. The default is true. * capped (boolean): Specify true to create a capped collection. If set, the size option must also be specified. The default is false. * flags (integer): Options for the MMAPv1 storage engine only. Must be a bitwise combination CreateCollection::USE_POWER_OF_2_SIZES and CreateCollection::NO_PADDING. The default is CreateCollection::USE_POWER_OF_2_SIZES. * indexOptionDefaults (document): Default configuration for indexes when creating the collection. * max (integer): The maximum number of documents allowed in the capped collection. The size option takes precedence over this limit. * maxTimeMS (integer): The maximum amount of time to allow the query to run. * size (integer): The maximum number of bytes for a capped collection. * storageEngine (document): Storage engine options. * typeMap (array): Type map for BSON deserialization. This will only be used for the returned command result document. * validationAction (string): Validation action. * validationLevel (string): Validation level. * validator (document): Validation rules or expressions.
또한 보기: http://source.wiredtiger.com/2.4.1/struct_w_t___s_e_s_s_i_o_n.html#a358ca4141d59c345f401c58501276bbb
또한 보기: https://docs.mongodb.org/manual/core/document-validation/
public __construct ( string $databaseName, string $collectionName, array $options = [] )
$databaseName string Database name
$collectionName string Collection name
$options array Command options

execute() 공개 메소드

Execute the operation.
또한 보기: Executable::execute()
public execute ( MongoDB\Driver\Server $server ) : array | object
$server MongoDB\Driver\Server
리턴 array | object Command result document