monger/README.md

67 lines
1.9 KiB
Markdown
Raw Normal View History

# Monger
2011-08-04 12:01:26 +00:00
2011-10-09 22:32:25 +00:00
Monger is an idiomatic Clojure wrapper around MongoDB Java driver.
2011-08-04 12:01:26 +00:00
2011-09-10 16:28:13 +00:00
2011-10-19 15:32:55 +00:00
## Project Goals
There is one MongoDB client for Clojure that has been around since 2009. So, why create another one? Monger authors
wanted a client that will
* Support most of MongoDB 2.0+ features but only those that really matter. Grouping the way it is done today, for example, does not (it is easier to just use Map/Reduce directly).
* Be well documented.
* Be well tested.
2011-10-19 15:41:49 +00:00
* Be maintained, not carry technical debt from 2009 forever.
2011-11-04 06:26:32 +00:00
* Integrate with libraries like clojure.data.json and Joda Time.
2011-10-19 15:41:49 +00:00
* Integrate usage of JavaScript files and ClojureScript (as soon as the compiler gets artifact it is possible to depend on for easy embedding).
* Learn from other clients like the Java and Ruby ones.
* Target Clojure 1.3.0 and later from the ground up.
2011-10-19 15:32:55 +00:00
2011-08-04 12:01:26 +00:00
## Usage
2011-11-02 14:56:59 +00:00
We are working on documentation guides & examples site for the 1.0 release. Please refer to the test suite for code examples.
2011-08-04 12:01:26 +00:00
2011-09-08 20:27:49 +00:00
## This is a Work In Progress
2011-09-08 20:27:49 +00:00
2011-10-19 15:32:55 +00:00
Core Monger APIs are stabilized but it is still a work in progress. Keep that in mind. 1.0 will be released in late 2011.
2011-09-10 16:28:13 +00:00
## Artifacts
2011-10-22 10:51:58 +00:00
Snapshot artifacts are [released to Clojars](https://clojars.org/com.novemberain/monger) every 24 hours.
With Leiningen:
[com.novemberain/monger "0.11.0-SNAPSHOT"]
With Maven:
<dependency>
<groupId>com.novemberain</groupId>
<artifactId>monger</artifactId>
<version>0.11.0-SNAPSHOT</version>
</dependency>
## Continuous Integration
[![Continuous Integration status](https://secure.travis-ci.org/michaelklishin/monger.png)](http://travis-ci.org/michaelklishin/monger)
CI is hosted by [travis-ci.org](http://travis-ci.org)
## Supported Clojure versions
Monger is built from the ground up for Clojure 1.3 and up.
2011-09-08 20:27:49 +00:00
2011-08-04 12:01:26 +00:00
## License
Copyright (C) 2011 Michael S. Klishin
2011-08-04 12:01:26 +00:00
2011-10-16 13:03:14 +00:00
Distributed under the [Eclipse Public License](http://www.eclipse.org/legal/epl-v10.html), the same as Clojure.