rulebook
rulebook copied to clipboard
100% Java, Lambda Enabled, Lightweight Rules Engine with a Simple and Intuitive DSL
It would be convenient to get an empty Optional if no rules were executed.
Please review my solution.
If I am building a Rule . `RuleBuilder.create().withName("Rule1") .withResultType(Boolean.class) .withFactType("fact") .when(facts -> true) .then(facts -> { } ))` The rule name is dropping.In RuleBuilder.java line number 92 rule name is...
Am I correct that in case rules are defined as spring singleton beans it means that all the application threads will be blocked by the single lock in Result class?...
Greetings, I really like working with rulebook, and would like to see more features and bug fixes in a relatively timely manner. If resources are not available to handle pull...
I liked the rulebook concept which is really great library. but Do we have any option dynamically add rules and conditions in Yaml or JSON rather than writing all rules...
I'm thinking that it would be cool to be able to have rules stored outside of the application (and the JVM) and have RuleBook be able to point to those...
dynamic compile and codegen other than interpreting execution can improve the performance of rule execution
I have created a Rule using Rule Bean, i want to write a unit test for it. How do I test it? @Clayton7510 ?
Hi. When using POJO rules, how can I add facts in one rule that can be used by a subsequent rule in the same ruleset? I saw in the FAQ...