[rules-users] Order of columns and of constraints

2007-05-30 Thread Dirk Bergstrom
Does the order of columns in the rule definition, and the order of constraints within a column matter? For a given rule, I know which test is most likely to fail, and (probably) which one is most "expensive" in terms of processing time (eg. 'someCollection contains $var' is more expensive than 'fi

Re: [rules-users] "Or" and Collect

2007-05-30 Thread Dirk Bergstrom
Edson Tirelli was heard to exclaim, On 05/30/07 05:54: >About "intersects" :), you can open a JIRA for it, but last word I > have from Mark is that there is no time left for new features in 4.0 > besides what was already committed. I understand -- I didn't think I'd get it in the upcoming rele

Re: [rules-users] Re: Re: JBRMS Query, very imp for me

2007-05-30 Thread Fernando Meyer
gt; > > > Did you know? You can CHAT without downloading messenger. Know how! > ___ > rules-users mailing list > rules-users@lists.jboss.org > https://lists.jboss.org/mailman/listinfo/rules-users -- next part

Re: [rules-users] "Or" and Collect

2007-05-30 Thread Edson Tirelli
Hey Dirk, Yes, documentation still needs to be updated. About "intersects" :), you can open a JIRA for it, but last word I have from Mark is that there is no time left for new features in 4.0 besides what was already committed. So, if users want this, the options are: * either a community

[rules-users] Re: Re: JBRMS Query, very imp for me

2007-05-30 Thread jagaran das
Did you know? You can CHAT without downloading messenger. Know how! > ___ > rules-users mailing list > rules-users@lists.jboss.org > https://lists.jboss.org/mailman/listinfo/rules-users -- next part -- An HTML attachment

Re: [rules-users] Example for using globals in Drools3.0.6

2007-05-30 Thread JLL
after reread some of my source files you don't need to initialize $mock so ... in the rule file don't forget to import your Mock and global Mock mock in the when conditions in the then statement mock.setMyString("hello world"); JLL wrote: > > hi > > i thing using a strin

Re: [rules-users] Example for using globals in Drools3.0.6

2007-05-30 Thread JLL
hi i thing using a string could cause some problems better use your own object named like "Mock" containing a string with setter and getter in the java code assert the object in working memory with MemoryManager.getWorkingMemory().setGlobal("mock", mock); in the rule file don't forget to impor