I think Roger Studner wrote: [Charset iso-8859-1 unsupported, filtering to ASCII...]
> What is the 'advised' strategy for handling problems like this? A massive > fact pool (like 400,000 facts) all at once, versus breaking it up. They are > all javabeans. Same as it is in any computing environment, really: profile and improve. Before we decide what to do, we need to know where all the time is going. Are many, many rules firing? Is there a polynomial amount of pattern matching? Are you calling a slow (possibly external) function many times? Is something being recomputed that should be stored? You can make measurements with a regular Java profiler, and/or use Jess's "watch" command or JessListener facility to track what's happening in the Jess part of your program. --------------------------------------------------------- Ernest Friedman-Hill Advanced Software Research Phone: (925) 294-2154 Sandia National Labs FAX: (925) 294-2234 PO Box 969, MS 9012 [EMAIL PROTECTED] Livermore, CA 94550 http://herzberg.ca.sandia.gov -------------------------------------------------------------------- To unsubscribe, send the words 'unsubscribe jess-users [EMAIL PROTECTED]' in the BODY of a message to [EMAIL PROTECTED], NOT to the list (use your own address!) List problems? Notify [EMAIL PROTECTED] --------------------------------------------------------------------
