Azure API管理配置外部缓存策略

kzipqqlq  于 2023-06-24  发布在  其他
关注(0)|答案(2)|浏览(100)

我们正在使用Azure API管理来发布、监控和维护API。我们还实现了B2C登录的身份验证和授权。
我正在尝试为API配置外部缓存。不知何故,缓存策略不起作用。链接https://learn.microsoft.com/en-us/azure/api-management/api-management-sample-cache-by-key
根据登录的用户租户ID,我们希望将模板存储在缓存中,并在以后为下一个请求进行检索。这是我写的政策。

<policies>
    <inbound>
        <set-variable name="tenantId" value="@(context.Request.Headers.GetValueOrDefault("Authorization","").Split(' ')[1].AsJwt()?.Subject)" />
        <cache-lookup-value key="@("templates-" + context.Variables["tenantId"])" variable-name="templates" />
        <choose>
            <when condition="@(!context.Variables.ContainsKey("tenantId"))">
                <send-request mode="new" response-variable-name="templateResponse" timeout="15" ignore-error="true">
                    <set-url>https://abc.azure-api.net/api/notification/templates/?api-version=v1</set-url>
                    <set-method>GET</set-method>
                </send-request>
                <set-variable name="templates" value="@(((IResponse)context.Variables["templateResponse"]).Body.As<string>())" />
                <cache-store-value key="@("templates-" + context.Variables["tenantId"])" value="@((string)context.Variables["templates"])" duration="10000" />
            </when>
        </choose>
        <base />
    </inbound>
    <backend>
        <base />
    </backend>
    <outbound>
        <base />
    </outbound>
    <on-error>
        <base />
    </on-error>
</policies>
s8vozzvw

s8vozzvw1#

只要请求中有授权头,APIM就不会缓存请求,除非您启用了私有响应缓存。
您可以将allow-private-response-caching属性设置为true,以便启用私有响应缓存https://learn.microsoft.com/en-us/azure/api-management/api-management-caching-policies#elements。
如果有了它不能继续工作,那么我建议向微软团队提交一份支持票证。

ncecgwcz

ncecgwcz2#

我在写政策的时候犯了点错误。这是正确的政策。

<policies>
    <inbound>
        <set-variable name="userId" value="@(context.Request.Headers.GetValueOrDefault("Authorization","").Split(' ')[1].AsJwt()?.Subject)" />
        <cache-lookup-value key="@("templates-" + context.Variables["userId"])" variable-name="templates" caching-type="external" />
        <choose>
            <when condition="@(!context.Variables.ContainsKey("templates"))">
                <send-request mode="new" response-variable-name="templateResponse" timeout="15" ignore-error="true">
                    <set-url>https://appname.azurewebsites.net/api/templates</set-url>
                    <set-method>GET</set-method>
                    <set-header name="Authorization" exists-action="override">
                        <value>@(context.Request.Headers.GetValueOrDefault("Authorization",""))</value>
                    </set-header>
                </send-request>
                <set-variable name="templates" value="@(((IResponse)context.Variables["templateResponse"]).Body.As<string>())" />
                <cache-store-value key="@("templates-" + context.Variables["userId"])" value="@((string)context.Variables["templates"])" duration="10000" />
            </when>
        </choose>
        <base />
    </inbound>
    <backend>
        <base />
    </backend>
    <outbound>
        <set-body>@((string)context.Variables["templates"])</set-body>
        <base />
    </outbound>
    <on-error>
        <base />
    </on-error>
</policies>

相关问题