This module provides access to a large part of the mongo DB API includig several read and write operations. Internally, libmongoc is used to interact with the database server. To this end, Prolog datastructures are translated from and into BSON format.
mng_find(roslog, triples, ['s',['$eq',string('Obj1')]], Result)
Result is a Prolog dictionary instantiated from the JSON document returned by mongo DB.
mongodump
commandline
tool.
mongodump
commandline
tool.
mongorestore
commandline
tool.
double(4)
.
It can further be wrapped in a unary operator term as
in <(4)
.
In such a case, it might be useful to retrieve the actual value too.
This can be achieved through ->/2 operator as in <(4)->Actual
.
mng_unflatten(['a.b',1], [a,[b,1]])
.
mng_typed_value(foo, string(foo))
mng_strip(<(double(2)), <, double, 2)
mng_strip(2, =, double, 2)
mng_strip(<(2)->X, <, double, 2)
Term=int(7)
in which case Type=int
and Value=7
.
If Term is untyped, the type will be determined through the
Prolog datatype of the value.
Term=(<(7))
in which case Operator='<'
and Stripped=7
.
If Term has no operator, then equality operator is used as fallabck.
Term=(<(7)->X)
in which case Stripped=(<(7))
.
Document=[[foo,string(bar)]]
would create a document
with string value "bar" assigned to field with key "foo".
Query=[key,['$lt',double(2)]]
.
Query=[key,['$lt',double(2)]]
.
Operations is a list of operation terms, each being one of:
insert(Document)
(see mng_store/3)remove(Query)
(see mng_remove/3)update(Query,Update)
(see mng_update/4)The following predicates are exported, but not or incorrectly documented.