Posts Tagged ‘RETE’
The Rete Algorithm
The Rete Algorithm is a marked improvement on Sequentially organised systems. To understand the benefit you need to understand what it is not.
In a sequenial BRE, the rules are executed one at a time in a sequential order. The more rule you add, the more time is needed to work through them. Sequential Rules engines works prohibitively slowly for large or complexed implementations. The problem is further exasperated in solutions with a high amount of traffic.
Instead the Rete Algorithim is used as a way of calculating the quickest route to proceed through a ‘maze’ of rule. In simple terms, we are able to create rule about which rules to action. The obvious benefit is that the system can handle much larger amounts of data and faster and simulate business logic which is then automated.