使用 mongdb erlang 驱动程序查询返回错误结果?

发布于 2024-11-30 18:43:55 字数 295 浏览 1 评论 0原文

当我尝试

Query = {country, <<"US">>} 时, mongo:find(Col, { '$query', Query, '$orderby', {last_seen, -1} }, Projector, 0, 15),

返回的游标不再限制批量大小 15。它将返回光标中的所有结果。但是,如果我将其更改为

mongo:find(Col, Query, Projector, 0, 15),

它将返回大小为 15 的光标。

这是一个错误还是我做错了什么?

When I tried

Query = {country, <<"US">>},
mongo:find(Col, { '$query', Query, '$orderby', {last_seen, -1} }, Projector, 0, 15),

The cursor returned is not limited to batch size 15 any more. It will return all the results in cursor. However, if I change it to

mongo:find(Col, Query, Projector, 0, 15),

It will return the cursor with 15 in size.

Is this a bug or I did anything wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

帝王念 2024-12-07 18:43:55

它适用于我下面的例子

run () ->
    application:start (mongodb),
    {ok, Conn} = mongo:connect (localhost),
    {ok, Docs} = mongo:do (safe, master, Conn, test, fun() ->
        mongo:delete (foo, {}),
        mongo:insert_all (foo, [{x,1}, {x,2}, {x,3}, {x,0}, {x,-1}]),
        Cur = mongo:find (foo, {'$query', {}, '$orderby', {x,1}}, {'_id',0}, 0, 3),
        mongo:rest (Cur) end),
    mongo:disconnect (Conn),
    [{x,-1}, {x,0}, {x,1}] = Docs.

It works for me on example below

run () ->
    application:start (mongodb),
    {ok, Conn} = mongo:connect (localhost),
    {ok, Docs} = mongo:do (safe, master, Conn, test, fun() ->
        mongo:delete (foo, {}),
        mongo:insert_all (foo, [{x,1}, {x,2}, {x,3}, {x,0}, {x,-1}]),
        Cur = mongo:find (foo, {'$query', {}, '$orderby', {x,1}}, {'_id',0}, 0, 3),
        mongo:rest (Cur) end),
    mongo:disconnect (Conn),
    [{x,-1}, {x,0}, {x,1}] = Docs.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文