Skip to content
This repository has been archived by the owner on Jun 23, 2020. It is now read-only.

jannehietamaki/mungbean

Repository files navigation

Mongbean is an alternative MongoDB (http://www.mongodb.org) driver for languages running on the Java Virtual Machine.

Language support so far

Java

Features

  • Basic operations: query, save, update, remove, ensureIndex, findOne, limit, sort API
  • Mongo documents can be mapped to generic java.util.collections (Maps + Lists)
  • Typesafe API for mapping POJOs to Mongo documents and back
  • DSLs for conditional operators, sorting, aggregation and updates
  • administration API (partial), authentication, cursors
  • Failover/replica pairs (partial)

Code examples

// Find items having field 'foo' greater than 5 and update those field 'bar' by 5.
collection.update(new Query().field("foo").greaterThan(3), new Update().field("bar").increment(5)); 

// typesafe query of POJOs
List<DomainObject> objects = collection.query(new Query().field("name").is("foo"));

// Sorting
List<DomainObject> objects = collection.query(new Query().field("name").orderAscending());

// select distinct values of field 'foo' of those items where value of 'bar' is greater than 5.
collection.query(Aggregation.distinct("foo", new Query().field("bar").greaterThan(5))); 
  • More code examples can be found here

Missing features

  • GridFS (partially)

Clojure

  • Basic operations: query, save, update, remove, limit, sort, aggregation
  • Working example

License

ASL 2.0

About

Alternative MongoDB driver for languages running on the JVM

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published