Squeak
  links to this page:    
View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide
Project memory usage
Last updated at 5:11 pm UTC on 27 September 2006
The following test gives a rough idea how much memory project object use minimally. The test is for for empty projects.



myProjDict _ Dictionary new.
1000 to: 1999 do: [ :i |
projname _ 'P' , i printString.
proj _ Project newMorphic.
myProjDict at: projname put: proj.
proj changeSet name: projname.


Next task for anybody interested:

Generate 1000 projects, enter each project and add 100 RectangleMorphs and 100 TextMorphs.
Measure memory footprint
and post results here.