E.g.
When an activation occurs for path /content/abc, we can configure with this ACS package to also flushes the dispatcher cache for path /content/xyz.
Read more about this add-on here:
Configurations:
/system/console --> ACS dispatcher flush rules
/etc/replication/agents.publish.html
I don't think the example performs exactly as was intended. The asterisks are used as regex quantifiers, not wildcards.
ReplyDeleteAs such, "/content/refdata/skynews/xml/finance/*.*" will certainly match any files with an extension under "/content/refdata/skynews/xml/finance/", however it would also match paths like:
- "/content/refdata/skynews/xml/finance"
- "/content/refdata/skynews/xml/finance-private"
- "/content/refdata/skynews/xml/finance/extensionless-file"
I suspect the intended example should have been "/content/refdata/skynews/xml/finance/[^./]+\.[^/]+", which would match only files with an extension, directly under the finance path.
This comment has been removed by the author.
ReplyDelete