See the documentation here: https://docs.mendix.com/refguide/transient-objects-garbage-collecting#4-1-observing-state-growth-by-session
Look at this part: 4.2 Detecting Requests with Large State
Regards,
Ronald
The Above warning is related to number of objects Shown per page . it can be more , but Ideally it should be 100 to follow best Practice. This is not an issue .
I also have this warning in project as am exceeding 100 objects per page, but my application is working fine.
Can you explain more about , what you are doing to display non persistent data?
var num = -10;
while (num < 20) {
console.log (num);
num ++;
}