Skip to content

Instantly share code, notes, and snippets.

@peterzawistowicz
Created September 24, 2015 12:58
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 peterzawistowicz/fad1910b6035b617d1ce to your computer and use it in GitHub Desktop.
Save peterzawistowicz/fad1910b6035b617d1ce to your computer and use it in GitHub Desktop.
use MongoDB;
# OLD WAY
my $client = MongoDB::MongoClient->new(
host => "mongodb://h1.example.com/"
);
# NEW WAY
my $client = MongoDB->connect("mongodb://h1.example.com/");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment