MarkLogic 服务器崩溃 - 我认为返回的记录太多
我编写了一个使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您的 XPath 步骤需要括号。我认为您已要求服务器加载所有 /data:doc/data:provider 元素。按文档顺序对它们进行排序,然后获取前 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:
-Danny