congomongo: Use MongoDB from Clojure
A close-to-the-metal wrapper for the MongoDB Java driver, congomongo brings all that cool NoSQL goodness to Clojure:
Here’s an ad-hoc query example from the README:
(fetch-one
:points
:where {:x {:$gt 10
:$lt 20}
:y 42
:z {:$gt 500}})
=> {:x 12, :y 42, :z 504, :_ns "points", :_id ... }
@purcell’s fork adds GridFS support. Woot!
Discussion
Sign in or Join to comment or subscribe