<table cellspacing="0" cellpadding="0" border="0" ><tr><td valign="top" style="font: inherit;">Hi,<div>I'm using Drools 5.3.0. I've a proprietary key-value based data store, where all the events are stored. As soon as an event is received, it is inserted in the session and the rules (example below) is fired:</div><div><br></div><div><div>rule "registration count"</div><div>no-loop</div><div>dialect "mvel"</div><div>when</div><div><span class="Apple-tab-span" style="white-space:pre">        </span>$e : Event(type == "registration", $s: student)</div><div>then</div><div><span class="Apple-tab-span" style="white-space:pre">        </span>$s.registerCount += 1;</div><div><span class="Apple-tab-span" style="white-space:pre">        </span>update($s);</div><div>end</div></div><div><br></div><div>All the 'registration'&nbsp;events which has occurred in the past (stored in data store) also are inserted in session so that any rule with temporal operator (relates among the events) can
 work fine. If I insert previous events then the rule "registration count" is evaluated again for each previous events and fired. Please let me know, if there is a way to&nbsp;prevent rule evaluation for certain rules while event insertion. The events are too many, so I don't keep all in working memory for &nbsp;long period, instead I store previous events in data store and insert all previous events also in session when I get a new event.</div><div>Please help me regarding the issue.</div><div><br></div><div>Thanks,</div><div>Neel</div><div><br></div><div><br></div></td></tr></table>