Our current install of crash fix web server had been using the default PHP memory limit of 128MB. Today some project pages failed to load because of PHP out-of-memory error. The project in question is currently having ~20k dumps. The problem went away after we bumped up the limit to 256MB.
I didn't get the chance to go through PHP code but I do believe that there should be some optimizations regarding how crash dump records are loaded in PHP. If the web page were to load all dumps at once, it's always possible for PHP to run out of memory no matter how high the limit is.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Our current install of crash fix web server had been using the default PHP memory limit of 128MB. Today some project pages failed to load because of PHP out-of-memory error. The project in question is currently having ~20k dumps. The problem went away after we bumped up the limit to 256MB.
I didn't get the chance to go through PHP code but I do believe that there should be some optimizations regarding how crash dump records are loaded in PHP. If the web page were to load all dumps at once, it's always possible for PHP to run out of memory no matter how high the limit is.