Skip to content

Instantly share code, notes, and snippets.

@masaedw
Created December 14, 2011 13:58
Show Gist options
  • Select an option

  • Save masaedw/1476653 to your computer and use it in GitHub Desktop.

Select an option

Save masaedw/1476653 to your computer and use it in GitHub Desktop.
heroku等でURI形式でmongodbの接続先が提供される場合にdbを作る
(defn database-from-uri [uri]
(let [uri (com.mongodb.MongoURI. uri)]
(doto (.connectDB uri)
(.authenticate (.getUsername uri)
(.getPassword uri)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment