MongoDB的Erlang开发包emongo.zip

时间:2022-08-06 05:58:52
【文件属性】:
文件名称:MongoDB的Erlang开发包emongo.zip
文件大小:21KB
文件格式:ZIP
更新时间:2022-08-06 05:58:52
开源项目 emongo 是另外一个 MongoDB 的 Erlang 开发包,已经多年没更新。示例代码:%% find documents where field1 is greater than 5 and less than 10 emongo:find(test, "collection", [{"field1", [{gt, 5}, {lt, 10}]}]). %% find documents where field1 is greater than or equal to 5 and less than or equal to 10 emongo:find(test, "collection", [{"field1", [{gte, 5}, {lte, 10}]}]). %% find documents where field1 is greater than 5 and less than 10 emongo:find(test, "collection", [{"field1", [{'>', 5}, {'<', 10}]}]). %% find documents where field1 is greater than or equal to 5 and less than or equal to 10 emongo:find(test, "collection", [{"field1", [{'>=', 5}, {'=<', 10}]}]). 标签:emongo
【文件预览】:
emongo-master
----t()
--------003-find.t(2KB)
--------004-cond-exprs.t(4KB)
--------001-load.t(351B)
--------002-bson.t(5KB)
----priv()
--------example.config(134B)
----src()
--------emongo_conn.erl(5KB)
--------emongo.erl(23KB)
--------emongo_bson.erl(7KB)
--------emongo_packet.erl(6KB)
--------emongo_app.erl(1KB)
----ebin()
--------emongo.app(278B)
----Emakefile(97B)
----README.markdown(6KB)
----Makefile(110B)
----.gitignore(12B)
----include()
--------emongo.hrl(1007B)

网友评论