CacheControl / CacheControl/json-rules-engine

version 7 - Design

未關閉
#372 9 則留言 3 個 reaction 已指派 0 人 在 GitHub 檢視
next-major
主要語言
JavaScript
星號
3.1k
分支
507
PR 合併指標
30 天內沒有已合併 PR

描述

Starting a thread here to put notes on a version 7 design.
Version 7 is an opportunity to make a number of changes that have been suggested in issues filed here that would make the JSON rules engine more extensible at the cost of breaking backwards compatibility with the current 6.x versions.

### Extensibility vs. Structure
With version 7 we want to consider the tradeoff between extensibility and having a known structure. For instance introducing the ability to add custom `Condition` classes or custom `Rule` subclasses allows for the system to be highly extensible but makes it much harder to reason about the input and output of the rules engine without knowing about all these extensions.

Ultimately we need to draw this line somewhere and my initial inclination is to draw it in favor of more extensibility in order to allow the broadest possible use of the rules engine.

### Concepts
Starting from a clean stale the following basic concepts will be part of the rules engine

**Facts**
Facts are things that are known by the rules engine during execution.

**Almanac**
The Almanac is the system for storing and looking up `Facts`.

**Conditions**
Conditions are executable, contain a priority, and return a result containing a boolean value. Generally there are 2 types of conditions, comparison conditions which check the value of a fact against another value, and composite conditions like `all`, `any`, and `not` which use 1 or more nested conditions to produce a result. By being fully extensible it's possible to introduce other types of conditions.

**Rules**
Rules are also executable and contain a priority. They generally are comprised of a set of conditions which are executed. Rules produce events as a result of execution.

**Engine**
The engine provides the mechanism to evaluate rules, and conditions. It includes mechanisms to resolve the values of facts or other special objects. Changing the engine can significantly change the behavior of the system.

貢獻指南

這個儲存庫沒有索引到貢獻指南

研究方向

這是一個版本 7 的設計討論,而不是實作任務,其中沒有指定任何檔案、測試或進入點。請先檢視目前的 6.x 規則引擎,以及討論中引用的相關 Issue;要完成這項工作,需要就可擴充性、結構、Facts、Almanac、Conditions、Rules 和 Engine 達成共識的設計。

由索引模型根據 Issue 內容生成。

評估

技術堆疊
javascript
領域
backend
Issue 類型
功能
難度
5/5
預估耗時
一週以上
活躍度
停滯
描述清晰度
需要釐清
新手友好度
20/100

把新 issue 寄到你的電子郵件信箱

精選適合新手參與的 GitHub issue 摘要。