Skip to content

Instantly share code, notes, and snippets.

@kornysietsma
Created August 9, 2011 05:12
Show Gist options
  • Save kornysietsma/1133449 to your computer and use it in GitHub Desktop.
Save kornysietsma/1133449 to your computer and use it in GitHub Desktop.
mongo samples - clojure
(ns my-mongo-app
(:use somnium.congomongo))
(mongo!
:db "camellia")
(insert! :people
{:firstName "Fred", :lastName "Bloggs", :ssid 8675309} )
(def fred (fetch-one
:people
:where {:firstName "Fred" :lastName "Bloggs"}))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment