2

我是 mongodb 的新手,找不到解决方案。

我正在使用mongo-php-driver

我刚刚创建了一些集合。我想从 PHP 代码创建一些文档。

$collection->create(array(
    'asda'=>12312,
    'cxzcxz'=>'czczcxz'
));

当该代码起作用时,集合中有两条相同的记录,但_id不同。

{ "_id" : ObjectId("4ff4b3b8859183d41700000f"), "asda" : 12312, "cxzcxz" : "czczcxz" }
{ "_id" : ObjectId("4ff4b3b8859183d417000010"), "asda" : 12312, "cxzcxz" : "czczcxz" }

如何修复它,以及我需要在此处更改哪些内容才能只有一个文档?

我在表中有 _id 索引。也许我每次都需要设置这个键?当我设置 _id 字段时,它在集合中保存了一条记录。但是如何让它自动(如自动增量)?

4

1 回答 1

4

您可以插入多条具有相似信息的记录,因为您没有为这些值中的任何一个指定唯一索引。默认唯一索引将打开_id

您可以使用MongoCollection.ensureIndex从 PHP 定义您自己的索引,例如:

// create a unique index on 'phonenum'
$collection->ensureIndex(array('phonenum' => 1), array("unique" => true));

还值得阅读有关唯一索引的 MongoDB 文档,因为如果正在为可能已经有重复值或空值的现有集合创建唯一索引,则需要注意一些警告。

_id如果要使用更自然的主键,您还可以选择提供自己的值。但是,您必须确保这_id对于新插入是唯一的。

MongoDB 创建的默认ObjectID被设计为在分配时具有相当高的唯一性。

代码示例:

<?php

// Connect to MongoDB server
$mongo = new Mongo();

// Use database 'mydb' and collection 'mycoll'
$collection = $mongo->mydb->mycoll;

// Drop this collection for TESTING PURPOSES ONLY
$collection->drop();

// The document details to insert
$document = array(
    'asda' => 12312,
    'cxzcxz' => 'czczcxz',
);

try {
    $collection->insert($document, array("safe" => true));

    // Note that $collection->insert() adds the _id of the document inserted
    echo "Saved with _id:", $document['_id'], "\n";
}
catch (MongoCursorException $e) {
    echo "Error: " . $e->getMessage()."\n";
}

// Add unique index for field 'asda'
$collection->ensureIndex(array('asda' => 1), array("unique" => true));

// Try to insert the same document again
$document = array(
    'asda' => 12312,
    'cxzcxz' => 'czczcxz',
);
try {
    $collection->insert($document, array("safe" => true));
    echo "Saved with _id:", $document['_id'], "\n";
}
catch (MongoCursorException $e) {
    echo "Error: " . $e->getMessage()."\n";
}

?>
于 2012-07-04T23:31:04.043 回答