gpt4 book ai didi

arangodb AQL 限制 > 1000

转载 作者:行者123 更新时间:2023-12-01 09:24:47 25 4
gpt4 key购买 nike

我在 AQL 中使用 LIMIT > 1000 时发现一个问题:

  • 查询速度快到 LIMIT 1000,持续时间不到一秒。
  • LIMIT 1001 开始,查询变得非常缓慢……我在 20 秒后中止了它。

以下是示例:

FOR e IN subcategoryOf
LIMIT 1000
RETURN { "id": e._id, "text": e.text }
--> Fast, below a second

FOR e IN subcategoryOf
LIMIT 1, 1000
RETURN { "id": e._id, "text": e.text }
--> Fast, below a second

FOR e IN subcategoryOf
LIMIT 1, 1001
RETURN { "id": e._id, "text": e.text }
--> not answering after 20 seconds, manually aborted then.

有没有人观察到同样的情况或对我有提示?

我在 Windows 上使用 ArangoDB 2.3.0 和土豚 AQL 编辑器。

最佳答案

谢谢,这是网络界面中的一个错误。我已在此提交中修复它: https://github.com/triAGENS/ArangoDB/commit/7656efd82fcbb31160d2ca4842f72190491101b8

关于arangodb AQL 限制 > 1000,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27144632/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com