-
Bug
-
Resolution: Won't Fix
-
P3
-
None
-
fx2.0
Recent enhancements in the installer are costly. We need to improve it.
One source of issues is js script used to generate xml file.
Problem there is that it use string concatenation to append to xml string that gets up to 11Mb long ... This is very slow.
I tried trivial change to append to local variable and then append to passed xml at the end of recursive functionand this seem to help a lot.
However, it will be much faster if we will change it to not return string at all but print it in place.
One source of issues is js script used to generate xml file.
Problem there is that it use string concatenation to append to xml string that gets up to 11Mb long ... This is very slow.
I tried trivial change to append to local variable and then append to passed xml at the end of recursive functionand this seem to help a lot.
However, it will be much faster if we will change it to not return string at all but print it in place.