使用 Marklogic Rest API 在 Marklogic7 中查找集合中的文档数
Find number of documents in a collection in Marklogic7 using Marklogic Rest API
我正在使用 Marklogic 7 Rest API,我想找出我的 Marklogic 数据库中任何集合中的文档数量。如何实现?
您可以POST查询页面长度为 1 的集合:
{"query":{
"queries":[{
"collection-query":{
"uri": ["YOUR_COLLECTION"]
}
}]
}}
http://docs.marklogic.com/REST/POST/v1/search
http://docs.marklogic.com/guide/search-dev/structured-query#id_76890
搜索响应中的总数 属性 将指示集合中的文档数。
我正在使用 Marklogic 7 Rest API,我想找出我的 Marklogic 数据库中任何集合中的文档数量。如何实现?
您可以POST查询页面长度为 1 的集合:
{"query":{ "queries":[{ "collection-query":{ "uri": ["YOUR_COLLECTION"] } }] }}
http://docs.marklogic.com/REST/POST/v1/search
http://docs.marklogic.com/guide/search-dev/structured-query#id_76890
搜索响应中的总数 属性 将指示集合中的文档数。