You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Originally posted by rohan3usturge September 18, 2023
knowledge
.newRule()
.forEach("$a", SomeVeryLargeClass.class "$b",Result.class)
.where(...more than 200 clauses)
.execute(ctx -> {
Result result = ctx.get("$b");
result.updateSuccess(true);
}
execute is really slow
Can you help how can I optimize this ?
The text was updated successfully, but these errors were encountered:
Discussed in #65
Originally posted by rohan3usturge September 18, 2023
knowledge
.newRule()
.forEach("$a", SomeVeryLargeClass.class "$b",Result.class)
.where(...more than 200 clauses)
.execute(ctx -> {
Result result = ctx.get("$b");
result.updateSuccess(true);
}
execute is really slow
Can you help how can I optimize this ?
The text was updated successfully, but these errors were encountered: