MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

MongoDB – wie man einen Datensatz mit der Autoincrement-Funktion einfügt

Sie müssen das Feld _id in $location hinzufügen. Und _id müssen Sie id hinzufügen. Beispiel:

function add_playbook_history_record($location)
{
        $m = new MongoClient("mongodb://10.1.1.111:27017");
        $db = $m->testdb;
        $collection = $db->testcollection;
        $location['_id'] = getNextSequence('playhistid')
        $cursor = $collection->insert($location);
}

Meine Empfehlung:Upsert in findAndModify hinzufügen

Es wird für Sie funktionieren:

    function getNextSequence($name)
    {
        $m = new MongoClient("mongodb://10.1.1.111:27017"); // In a real project, you do not need all the time to re-create the connection
        $db = $m->testdb;
        $collection = $db->counters;
        $result =  $collection->findAndModify(
            ['_id' => $name],
            ['$inc' => ['seq' => 1]],
            ['seq' => true],
            ['new' => true, 'upsert' => true]
        );
        if (isset($result['seq']))
        {
            return $result['seq'];
        }
        else
        {
            return false;
        }
    }

In einem echten Projekt brauchen Sie nicht ständig die Verbindung neu herzustellen

Sie können die MongoDatabase (dieses Muster einzeln) erstellen

class MongoDatabase{
    private function __construct(){}
    public static function getInstance(){...} // return MongoClient
} 

und rufen Sie die Need-Methode auf

MongoDatabase::getInstance()->selectCollection('counters')->findAndModify(...)