美文网首页
客户端缓存和Nginx缓存

客户端缓存和Nginx缓存

作者: 空口言_1d2e | 来源:发表于2019-10-28 22:57 被阅读0次

    客户端缓存

    def cache_response(response,max_age=3600,s_maxage=3600):
        response.cache_control.public = True
        response.cache_control.max_age = max_age
        response.cache_control.s_maxage = s_maxage
        return response
    
    @alipay_b_api.route('/aaaaaaaaa')
    def alipay_applet_hot():
        hot = search_message("union_applet_hot")
        hot_keyword = hot.message_data if hot else ""
        data = {
            'code': 200,
            'is_show': 1 if hot else 0,
            'result': hot_keyword
        }
        response = jsonify(data)
        return cache_response(response)
    

    Nginx缓存

    image.png
    NGINX内容缓存
    Cache-Control

    相关文章

      网友评论

          本文标题:客户端缓存和Nginx缓存

          本文链接:https://www.haomeiwen.com/subject/sxmivctx.html