Open jarvisteach opened 7 years ago
A bunch of work needs to be done to analyse and clean up memory usage in appJar.
I'm sure there are lots of things that could be changed to reduce memory usage, as well as ensuring GC runs correctly #271
Things could also be sped up.
See here: http://effbot.org/pyfaq/how-does-python-manage-memory.htm And here: https://docs.python.org/3/library/gc.html
Some things to investigate:
Will replace all string concatenation with the old style formatter: "%s blah blah %s" % (1, 2)
"%s blah blah %s" % (1, 2)
A bunch of work needs to be done to analyse and clean up memory usage in appJar.
I'm sure there are lots of things that could be changed to reduce memory usage, as well as ensuring GC runs correctly #271
Things could also be sped up.
See here: http://effbot.org/pyfaq/how-does-python-manage-memory.htm And here: https://docs.python.org/3/library/gc.html