MarkLogic 服务器崩溃 - 我认为返回的记录太多

发布于 2024-11-17 12:24:34 字数 273 浏览 1 评论 0原文

我编写了一个使用 CQ Web 应用程序不返回的 XQuery。

我认为下面的内容可以工作,但服务器仍然挂起。

declare namespace data = "http://marklogic.com/ps/data";
/data:doc/data:provider[ 1 to 5 ]

有什么想法吗?如果我沿着树搜索它就不会挂起。我现在正在尝试探索数据结构,因此我需要至少返回一个提供程序。

提前致谢,

吉多

I've written an XQuery that doesn't return using the CQ web application.

I thought the below would work, but the server still hangs.

declare namespace data = "http://marklogic.com/ps/data";
/data:doc/data:provider[ 1 to 5 ]

Any ideas? It doesn't hang if I search down the tree. I am trying to explore the data structures at this point so I need at least one provider returned.

Thanks-in-advance,

Guido

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

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

发布评论

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

评论(1

∞觅青森が 2024-11-24 12:24:34

我认为您的 XPath 步骤需要括号。我认为您已要求服务器加载所有 /data:doc/data:provider 元素。按文档顺序对它们进行排序,然后获取前 5 个。但是,如果您有数百万或数十亿个这些元素,则必须将它们全部获取。这可能需要很长时间。试试这个:

declare namespace data = "http://marklogic.com/ps/data";
(/data:doc/data:provider)[ 1 to 5 ]

-Danny

I think you need parenthesis around your XPath steps. I think you have asked the server to load up all of the /data:doc/data:provider elements. Sort them in document order and then, grab the first 5. But if you have millions or billions of those elements, it will have to get them all. Which is probably taking a long time. Try this instead:

declare namespace data = "http://marklogic.com/ps/data";
(/data:doc/data:provider)[ 1 to 5 ]

-Danny

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文