Results 79 comments of Jesus Ruiz

Hi, thanks for posting the question. The ruby library has the same hooks as python and node.js. Let me put together the dynamic loading sample within the next couple of...

Hi, I have added the testdynamic example for Ruby. These are the files for the example: https://github.com/jruizgit/rules/tree/master/testrb/admin.html https://github.com/jruizgit/rules/tree/master/testrb/testdynamic.html https://github.com/jruizgit/rules/tree/master/testrb/testdynamic.rb https://github.com/jruizgit/rules/tree/master/testrb/durableVisual.js You can try it by: 1. Run ruby testrb/testdynamic.rb 2....

Hi, thanks for asking the question. Do you have an example of what you have in mind?

Hi, I haven't added the persistence hooks yet. I will be adding them in the next couple of weeks.

Hi, thanks for asking the question. The behavior is expected, as the rules engine doesn't block the main thread (this way you can use it with other frameworks such as...

Hi, thanks for posting the question. The engine limits the size of expressions to 32 terms (term1 AND term2 AND term3...). Unfortunately the limit is not configurable. The limit is...

Hi, thanks for asking the question. The action execution is not guaranteed to be synchronous with event Post or Fact assert/retract. Exceptions are caught and set in the context state....

Thanks for posting the question. Yes you can write rules to reason about events that happen over a period of time. Below is a simple example, which detects a pattern...

Hi, thanks for reporting this issue. The number of object properties is limited to 32 (including nested object properties). To achieve higher performance in the rules engine, objects are allocated...

Hi, thanks for asking the questions. 1. State offloading to Redis can be implemented as an extension. Please follow the example (also available for Python): https://github.com/jruizgit/rules/blob/master/testjs/testdurable.js 2. No it is...