0 Replies Latest reply on Jun 5, 2007 2:43 AM by jason.greene

    CR2 POJO Cache Notification Changes

    jason.greene

      Hello Everyone,

      CR2 finally adds the long awaited ability for remote POJO notifications. In order to provide this functionality the implementation design was changed to be an extension of the core Cache Listener API instead of relying on the introduction of AOP mixins (which can be local only and prevent the possibility of transactional behavior).

      Also included in this release is the ability to register a POJO listener using a regex based filter on the FQN of the change.

      A side effect of these improvements is the loss of the multiple PRE POST phase delivery. There are 3 main reasons why this had to change:
      1) A single POJO change can consist of many internal core cache node updates, so it's not always possible to identify a change unless all of them are made, and therefore any POJO PRE phase would be inaccurate.
      2) The current Cache Listener API in core cache doesn't have the ability to see a future change while in the PRE phase. The POJO notification implementation would have to wait for the POST phase to see the change and this also makes any POJO PRE phase inaccurate.
      3) The common goal of both the core cache and pojo cache notification system is to deliver notifications *only* on TX boundaries.. This makes a PRE phase not as useful, since you are just being informed what changed.

      Overall I view this as more of a simplification. The only real loss of functionality is the ability to tell what the value was before a field change but this kind of change tracking can easily be implemented in an application specific manner by just tracking the events you care about in a pojo cache listener

      On another topic, the upcoming CR3 release will include support for collection operation notifications. The code is already in HEAD if you want to play with it now.

      I appreciate any feedback you have to offer on this as we are approaching GA soon.

      Thanks,
      -Jason