gpt4 book ai didi

azure - Microsoft Azure API 管理 - 缓存策略不起作用

转载 作者:行者123 更新时间:2023-12-04 08:16:19 27 4
gpt4 key购买 nike

我尝试在 Azure API 管理中设置缓存策略,如下所示:

<policies>
<inbound>
<base />
<cache-lookup vary-by-developer="false" vary-by-developer-groups="false" must-revalidate="true" downstream-caching-type="none" caching-type="internal">
<vary-by-query-parameter>KontoNr</vary-by-query-parameter>
</cache-lookup>
<set-backend-service id="apim-generated-policy" backend-id="LogicApp_GeldEinzahlen_APIM_f597e3433e7847cb9d689c3f95bf1d6d" />
<validate-jwt header-name="Authorization" failed-validation-httpcode="401" failed-validation-error-message="Unauthorized. Access token is missing or invalid.">
<openid-config url="https://login.microsoftonline.com/1b7c4ba5-7701-49e7-94d8-5ddbc87f8b6e/v2.0/.well-known/openid-configuration" />
<required-claims>
<claim name="aud">
<value>7068cdb6-0e5c-49c5-aaa8-ec8fc941de22</value>
</claim>
</required-claims>
</validate-jwt>
<set-variable name="isKontoNr" value="@(context.Request.MatchedParameters["kontoNr"].ToString().Length != 10)" />
<choose>
<when condition="@(context.Variables.GetValueOrDefault<bool>("isKontoNr"))">
<return-response>
<set-status code="400" reason="Bad Request" />
<set-header name="WWW-Request" exists-action="override">
<value>Generell error="kontoNr invalid"</value>
</set-header>
</return-response>
</when>
</choose>
</inbound>
<backend>
<base />
</backend>
<outbound>
<base />
<cache-store duration="1000" />
</outbound>
<on-error>
<base />
</on-error>
</policies>

我的定价层为“开发人员”,因此内部缓存必须可用,但如果我发出请求,我总是会得到以下响应:

HTTP/1.1 200 OK

cache-control: no-cache
content-encoding: gzip
content-type: text/plain; charset=utf-8
date: Tue, 12 Jan 2021 15:54:26 GMT
expires: -1
pragma: no-cache
strict-transport-security: max-age=31536000; includeSubDomains

无论我在 header 中发送什么内容,缓存控制始终为“无缓存”。

我该如何修复它?是否需要其他配置或者我是否启用了某些功能?

最佳答案

正如评论中无声提到的,消息 cache-control: no-cache不应该真正指示缓存是否正在使用。 <cache-lookup>您的 APIM 中的策略是正确的。

第一次请求api(在APIM页面测试)时,点击“Trace”-->“Inbound”。您可以找到消息Cache lookup resulted in a miss因为第一次请求的时候没有缓存。 enter image description here

然后点击“出站”,可以找到Response will be buffered during streaming and stored in the cache after it is received in fullenter image description here

然后,由于您指定了缓存保存1000秒,所以如果您在1000秒后再次请求,您可以找到消息Cache lookup resulted in a hit!在“入站”下。 enter image description here

请您这边测试一下,如果结果和我上面说的一样,政策<cache-lookup>在您的 APIM 中运行良好。

关于azure - Microsoft Azure API 管理 - 缓存策略不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65687689/

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