Monday, 16 June 2014

Adobe AEM/CQ - ACS dispatcher flush rules

We use this to flush associate paths for a given node.

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






2 comments:

  1. I don't think the example performs exactly as was intended. The asterisks are used as regex quantifiers, not wildcards.

    As 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.

    ReplyDelete
  2. This comment has been removed by the author.

    ReplyDelete