Parent - child processes - Memory leaks

soonerorlater

New Member
Hi guys,

Our team has developed a process which has 20+ pages and calling the respective objects. This process takes almost 1 minute 15 sec to even load.
I was suggesting to split the process into multiple child processes, but what my team says "Calling a child process from parent process will consume memory and by calling child processes recursively can make memory leakages to happen, that’s why it is part of one process"

Can someone please confirm if this is a valid statement to make?

Thanks
 

tgundhus

Member
Hello.

In general it's many memory leaks in BP as well as the GC collector is super slow!

Anyhow, the issue occurs whenever you pass variables between pages and processes. Every time this is done, BP creates a duplicate of the data item/collection. When it comes to processes the whole sub-prosess is catched into the memory when loaded.
 
Top