I have a question regarding the performance of pattern matching. Is it more performant to use join nodes, or to use a from?<br><br>For example. With joins I could write a rule like<br><br>rule "Foo Join"<br> when<br>
Foo($bar : bar != null)<br> Bar(this == $bar)<br> then<br> ... <br>end<br><br>rule "Foo From"<br> when<br> $foo :Foo()<br> Bar () from $foo.bar<br> then<br> ...<br>
end<br><br>thanks<br>