Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d79e929

Browse files
committed
edit mongodb recipe
1 parent 97b8661 commit d79e929

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

databases/mongo/mongo.asciidoc

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,16 @@ You want to work with data stored in MongoDB.
88

99
==== Solution
1010

11-
Use Monger to connect to MongoDB and search or manipulate the data. Monger is a Clojure wrapper around the Java MongoDB driver.
11+
Use http://clojuremongodb.info/[Monger] to connect to MongoDB and
12+
search or manipulate the data. Monger is a Clojure wrapper around the
13+
Java MongoDB driver.
1214

13-
First, add Monger to your `project.clj` file:
15+
Before using Mongo from your Clojure code, you must have a running
16+
instance of MongoDB to connect to. See MongoDB's
17+
http://docs.mongodb.org/manual/installation/[installation guide] for
18+
instructions on how to install MongoDB on your local system.
19+
20+
When you're ready to write a Clojure MongoDB client, add Monger to your `project.clj` file:
1421

1522
[source,clojure]
1623
----
@@ -165,4 +172,4 @@ The basic find functions in `monger.collection` will work for simple queries, bu
165172

166173
==== See Also
167174

168-
* https://github.com/aboekhoff/congomongo[CongoMongo] is another Clojure library for working with MongoDB that you can consider.
175+
* https://github.com/aboekhoff/congomongo[CongoMongo] is another Clojure library for working with MongoDB that you might consider.

0 commit comments

Comments
 (0)