Yes, I have gone through a lot of answers, but they don't really specifically say if Zombie Processes will have any adverse effects in the longer run or not.
I have an application that creates a child on new connection and the child performs certain task, closes the connection and exits. Then the process becomes a Zombie.
I know all the resources have been freed, so there is no worry on that part.
I know the parent application needs to be written properly so that it will either wait or handle the signal properly.
However, are there any adverse effects (in longer run) if I just choose not to handle those properly (besides it affecting my conscience and code quality)