我需要将窗口规则链接到窗口规则。我的用例是:
如果在5分钟内出现的温度> 50大于10,则在该窗口框架或该窗口数据上的任何其他链规则中找到温度的最大值(平均值)。
我尝试了以下方法:
query getFactFromMemory(long time)
$fact : Fact(timepoing < (drools.getWorkingMemory().getSessionClock().getCurrentTime() + time))
end
rule "window rule"
when
//condition
then
//action
end
rule "chain rule"
when
//condition
then
getFactFromMemory(1000L)
//loop over facts and then perform some action
end
调用查询时出现错误。我尝试在部分输入时调用查询并将其分配给变量,但同时也会出错(Query's must use positional or bindings, not field constraints:1000L
和Query binding is not supported by non-abductive queries : $variable
)。
有人可以帮助我解决此错误或提出解决问题的其他方法吗?
答案 0 :(得分:0)
我们可以通过调用from sample_project import views
urlpatterns = [
path('', views.index, name='home'),
path('subscribe/', views.index, name='subscribe'),
path('about', views.about, name='about'),
path('contact', views.contact, name='contact'),
]
在drl中获取drools运行时对象。因此,该问题的工作规则是:
drools.getKieRuntime()