AEM Dispatcher 缓存规则是为了优化性能而提供的一种机制,可以通过配置 Dispatcher 缓存规则来控制哪些资源应该被缓存,以及缓存的有效期等。
下面是一个基本的 AEM Dispatcher 缓存规则的示例代码:
# Cache everything for 1 hour
/ {
/glob "*"
/type "allow"
/caching
{
/rules
[
{
/glob "*"
/type "allow"
/duration "3600"
}
]
}
}
上述示例代码将所有的资源都缓存,并设置缓存有效期为1小时。
除了上述基本的规则,还可以根据具体需求制定更复杂的规则。下面是一些常见的示例代码:
# Cache only HTML and CSS files for 1 hour
/ {
/glob "*.html"
/type "allow"
/caching
{
/rules
[
{
/glob "*.css"
/type "allow"
/duration "3600"
}
]
}
}
# Exclude /content/mywebsite/images directory from caching
/ {
/glob "*"
/type "allow"
/caching
{
/rules
[
{
/glob "/content/mywebsite/images*"
/type "deny"
}
]
}
}
# Cache all HTML files except those containing "/admin/" in the URL
/ {
/glob "*.html"
/type "allow"
/caching
{
/rules
[
{
/glob "*"
/type "allow"
/duration "3600"
}
]
}
}
/ {
/regex ".*/admin/.*"
/type "deny"
}
上述示例代码将缓存所有的 HTML 文件,并排除包含 "/admin/" 的 URL。
以上是一些 AEM Dispatcher 缓存规则的示例代码,你可以根据具体需求进行适当的修改和配置。