On Tue, Oct 26, 2010 at 5:29 PM, Guillaume Belrose <[email protected]> wrote: > ...I was thinking of storing each core event as a jcr node with > properties to record time-stamp and various type information and I am > wondering if this is suitable approach.I am aware that JackRabbit > struggles to scale if a given node contains a large (i.e. over 10000 ) > number of children nodes. I guess to go around this problem, I could > store events by using a node structure modelled after the date (year > --> month --> day) when events occur. This would certainly limit the > number of nodes to be stored at any given level....
Way to go, this allows you to have an arbitrary number of event nodes, and makes browsing/purging events very easy using a JCR explorer. We're using similar structures in several places in Day's cq5 product. -Bertrand
