MongoDB Nit Driver.

This is actually a wrapper around the MongoDB C Driver.

Usage:

var client = new MongoClient("mongodb://mongo:27017/")

# Select the database.
var db_suffix = "NIT_TESTING_ID".environ
var db_name = "test_{db_suffix}"
var db = client.database(db_name)

# Retrieve a collection.
var col = db.collection("test")

# Insert a document in the collection.
var doc = new JsonObject
doc["foo"] = 10
doc["bar"] = "bar"
doc["baz"] = new JsonArray
assert col.insert(doc)

# Retrieve a document from the collection.
var query = new JsonObject
query["foo"] = 10
var res = col.find(query)
assert res["bar"] == "bar"

All subgroups and modules

module mongodb

mongodb :: mongodb

MongoDB Nit Driver.
module native_mongodb

mongodb :: native_mongodb

Native wrapper for the MongoDB C Driver
module queries

mongodb :: queries

Mongo queries framework
package_diagram mongodb\> mongodb json json mongodb\>->json c c mongodb\>->c parser_base parser_base json->parser_base serialization serialization json->serialization core core c->core ...parser_base ... ...parser_base->parser_base ...serialization ... ...serialization->serialization ...core ... ...core->core popcorn popcorn popcorn->mongodb\> popcorn\>examples\>mongodb\> mongodb popcorn\>examples\>mongodb\>->mongodb\> github github github->popcorn github... ... github...->github

Ancestors

group codecs

core > codecs

Group module for all codec-related manipulations
group collection

core > collection

This module define several collection classes.
group core

core

Nit common library of core classes and methods
group meta

meta

Simple user-defined meta-level to manipulate types of instances as object.
group parser_base

parser_base

Simple base for hand-made parsers of all kinds
group poset

poset

Pre order sets and partial order set (ie hierarchies)
group serialization

serialization

Abstract serialization services
group text

core > text

All the classes and methods related to the manipulation of text entities

Parents

group c

c

Structures and services for compatibility with the C language
group json

json

read and write JSON formatted text

Children

group popcorn

popcorn

Popcorn

Descendants