0

我想查询仅获取记录数而不是所有对象。

我正在这样做:

    """<?xml version="1.0" encoding="UTF-8"?>
    <SOAP-ENV:Envelope xmlns:ns0="http://www.service-now.com/incident" 
        xmlns:ns1="http://schemas.xmlsoap.org/soap/envelope/" 
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
        xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
    <SOAP-ENV:Header/>
        <ns1:Body>
            <ns0:getRecords>
                <ns0:__limit>100</ns0:__limit>
            </ns0:getRecords>
        </ns1:Body>
    </SOAP-ENV:Envelope>

但它返回所有限制为 100 的对象并保持缓慢,为了获得更好的性能,我认为如果只返回记录数它会变得更好。

有什么办法吗?

4

2 回答 2

1

有一个名为 Aggregate Web Service 的插件允许您使用聚合函数(例如 SUM、COUNT、AVG...)进行查询。请参阅以下链接了解更多信息: http ://wiki.servicenow.com/index.php?title=Direct_Web_Service_API_Functions#aggregate

以下是使用 COUNT 聚合函数的示例 SOAP 请求:

<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/encoding/"
   xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
   xmlns:m="http://www.service-now.com"
   xmlns:tns="http://www.service-now.com/map"
   xmlns:xsd="http://www.w3.org/2001/XMLSchema"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
    <SOAP-ENV:Body>
        <aggregate>
            <COUNT>number</COUNT>
            <active>true</active>
        </aggregate>
    </SOAP-ENV:Body>
</SOAP-ENV:Envelope>
于 2013-08-29T18:31:48.140 回答
-1

您还可以使用不带查询过滤器的 getKeys 方法,它将返回所有记录,只需从响应中获取 count 属性。

于 2014-05-25T23:17:34.373 回答