This content has been marked as final.
Show 1 reply
-
1. Re: Having rule Execution issue in singleton Runtime manager scenario.
krisverlaenen Feb 1, 2015 8:15 AM (in response to narsi.chowdary)If you use singleton approach, the ksession will keep all the data you insert into the session across invocations, and across sessions. The data inserted by one process instance is also visible by the other process instance. It's always recommended to clean up the working memory in case you are reusing the ksession. Alternatively, you could for example use a ksession per process instance to avoid unwanted interactions between process instances as they would use a different working memory in that case.