How to install Drools plugin in Eclipse Indigo IDE

I don’t know much about how to use it, but to install it as an eclipse plugin, this should work: Start Eclipse Help -> Install New Software In the Work With: or Site: input field, enter: “**http://download.jboss.org/drools/release/`<VERSION>.Final/org.drools.updatesite/**”, replace “`” with appropriate version and click the “Add” button For the Name you can just enter “Drools” … Read more

Why should i use Drools? [closed]

Fanatics of all stripes should be questioned, no matter what topic they rave about. Data-driven decision tables are a perfectly good way to implement complex behavior. On the day it doesn’t scale or perform to your requirements, perhaps you’ll want to consider something else. I wouldn’t want to make a technology swap in working production … Read more

Forward Chaining vs Backward Chaining

Backward chaining (a la Prolog) is more like finding what initial conditions form a path to your goal. At a very basic level it is a backward search from your goal to find conditions that will fulfil it. Backward chaining is used for interrogative applications (finding items that fulfil certain criteria) – one commercial example … Read more