如何清除和查看 haproxy 缓存

如何清除和查看 haproxy 缓存

我在 CentOS 7 机器上运行了 haproxy 1.9.4,配置如下

backend test
   acl is_cached path_end .js .css
   http-request cache-use static if is_cached
   http-response cache-store static if is_cached
   server my_webserver 127.0.0.1 check
cache static
    total-max-size 512
    max-age 300s

那么有没有办法在不重新启动 haproxy 的情况下清除缓存?

我如何查看缓存?

相关内容