...
In a shared instance we need to limit the resource usage in a formula. The limit is per script, i.e. formula element, so as a workaround, try to spread out the logic between more elements.
If you encounter many instances of a Date, you can consider trying these code replacements:
api.parseDate(strdate)
→Date.parse(DATE_FORMAT, strDate)
def formatter = new SimpleDateFormat(DATE_FORMAT); formatter.format(date)
->date.format(DATE_FORMAT)
Optimization Segmentation Logics
Note | ||
---|---|---|
If you are working with Optimization – segmentation tree, the maximum number of instances is defined within the
|
Info |
---|
See also:
|
...