我有一个没有_id索引的上限集合,我根本不需要_id, 但PHP mongo驱动程序总是在插入时添加_id。
It is possible to suppress the automatic generation of an _id with the mongo shell
如何使用PHP来插入_id上的_id?
答案 0 :(得分:0)
你无法摆脱_id,但你可以覆盖它。 因此,您可以将1列数据插入_id字段。
例如
$myCollection->insert(array("_id" => 2000, "data" => "someData));