Skip to content

Instantly share code, notes, and snippets.

@giorgiosironi
Created December 19, 2013 14:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save giorgiosironi/8040091 to your computer and use it in GitHub Desktop.
Save giorgiosironi/8040091 to your computer and use it in GitHub Desktop.
<?php
$mongo = new Mongo();
$widgets = $mongo->onebip->widgets;
for ($i = 0; $i < 5000; $i++) {
$value = rand();
$widgets->insert(['value' => $value]);
echo "Inserted $i!", PHP_EOL;
sleep(1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment