You can have a rule fire repeatedly according to a numeric fact property:<br><br>rule &quot;Rule 03&quot;<br>salience (- $intValue)<br>
when<br>
        $number: Number( $intValue: intValue )<br>
then<br>
        System.out.println(&quot;Number found with value: &quot;+$intValue() );<br>
end<br><br>You can&#39;t do this with a query. Use some Java method for sorting the collection of facts. <br><br>Both techniques (not/retract and salience) result in algorithms that perform considerably worse than the best custom sort algorithms. <br>
<br>-W<br><br><div class="gmail_quote">On 26 November 2011 18:37, Syargey <span dir="ltr">&lt;<a href="mailto:Syargey@tut.by">Syargey@tut.by</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hello all,<br>
<br>
I experienced a problem I can&#39;t solve.<br>
<br>
After rules firing I got a number of facts of certain type.<br>
<br>
I would like to get a collection of facts sorted by custom field with a<br>
query.<br>
<br>
Drools guide proposes to sort facts by a rule like:<br>
<br>
rule &quot;Rule 03&quot;<br>
when<br>
        $number : Number( )<br>
        not Number( intValue &lt; $number.intValue )<br>
then<br>
        System.out.println(&quot;Number found with value: &quot;+$number.intValue() );<br>
        retract( $number );<br>
end<br>
<br>
But it doesn&#39;t suit me:<br>
1) I can&#39;t retract facts from session<br>
2) I need to get sorted collection with a query which doesn&#39;t have &#39;then&#39;<br>
part.<br>
<br>
Is there any method to get custom sorted collection with a query?<br>
<font color="#888888"><br>
<br>
<br>
--<br>
View this message in context: <a href="http://drools.46999.n3.nabble.com/facts-custom-sort-tp3538410p3538410.html" target="_blank">http://drools.46999.n3.nabble.com/facts-custom-sort-tp3538410p3538410.html</a><br>
Sent from the Drools: User forum mailing list archive at Nabble.com.<br>
_______________________________________________<br>
rules-users mailing list<br>
<a href="mailto:rules-users@lists.jboss.org">rules-users@lists.jboss.org</a><br>
<a href="https://lists.jboss.org/mailman/listinfo/rules-users" target="_blank">https://lists.jboss.org/mailman/listinfo/rules-users</a><br>
</font></blockquote></div><br>