exponentcms / exponent-cms

Content Management, Simple.
exponentcms.org
GNU General Public License v2.0
59 stars 24 forks source link

Move Report calculations into MySQL #1558

Open dleffler opened 1 year ago

dleffler commented 1 year ago

Several calculations within the Report Controller are done by PHP after loading all the records. This can be very time consuming and even deplete available memory. Creating a SQL statement using SUM(), etc.. would push the calculation into MySQL and be better for large databases.