PHP Code _php tutorial for simulating auto increment in MongoDB

Source: Internet
Author: User
The code is roughly as follows:
Copy CodeThe code is as follows:
function generate_auto_increment_id ($namespace, array $option = Array ())
{
$option + = Array (
' Init ' = 1,
' Step ' = 1,
);
$instance = new Mongo ();
$instance = $instance->selectcollection (' _seq ', ' seq ');
$seq = $instance->db->command (Array (
' findandmodify ' = ' seq ',
' Query ' = = Array (' _id ' = $namespace),
' Update ' = Array (' $inc ' = = Array (' id ' = ' = ' $option [' Step ']),
' New ' = true,
));
if (Isset ($seq [' Value '] [' ID '])) {
return $seq [' value '] [' id '];
}
$instance->insert (Array (
' _id ' = $namespace,
' id ' = $option [' init '],
));
return $option [' init '];
}
Var_dump (generate_auto_increment_id (' foo '));
Var_dump (generate_auto_increment_id (' Bar ', Array (' init ' = 123));
?>

Its implementation is mainly the use of MongoDB in the Findandmodify command, as long as every time into MongoDB insert object before the generation of ID assignment to _id OK, because its implementation to meet the atomicity, so there is no concurrency problem.

It is also stated that the findandmodify itself provides a upsert parameter, true if it can be automatically insert, but then cannot customize the initial value, so the example in this article does not use Upsert.

BTW, the name of the database "_seq" begins with an underscore, so the list is lined up in front and easier to distinguish.

Reference: Auto Increment with MongoDB

http://www.bkjia.com/PHPjc/323090.html www.bkjia.com true http://www.bkjia.com/PHPjc/323090.html techarticle The code looks like this: the copy code code is as follows:? PHP function generate_auto_increment_id ($namespace, array $option = Array ()) {$option + = array ( ' Init ' = 1, ' Step ' = 1, '; $...

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.