Closed
Bug 282289
Opened 21 years ago
Closed 17 years ago
FormatDouble called too many times from BugMail.pm
Categories
(Bugzilla :: Email Notifications, defect)
Tracking
()
RESOLVED
WONTFIX
People
(Reporter: mkanat, Unassigned)
Details
(Keywords: perf)
I profiled process_bug with enableSendMail turned off, and with a bug with 1000
CCs. Here are the top few results:
%Time Sec. #calls sec/call F name
13.73 6.5004 13958 0.000466 Bugzilla::BugMail::FormatDouble
11.01 5.2153 997 0.005231 Bugzilla::BugMail::NewProcessOnePerson
9.35 4.4290 5107 0.000867 DBI::st::execute
Note that we spend an lot of time in FormatDouble, because we call it 14 times
for EACH user.
Really, we could just do all of the FormatDouble calls outside of
NewProcessOnePerson, in ProcessOneBug, instead.
| Reporter | ||
Updated•19 years ago
|
Severity: normal → minor
| Reporter | ||
Comment 1•17 years ago
|
||
Honestly, I think fixing this would add to code complexity more than it would actually help anything. Also, I think we mostly use wrap_hard instead of format calls, so this probably doesn't even matter. And this is a CPU issue--it's pretty easy to get faster CPUs or throw more webheads at Bugzilla, nowadays.
Status: NEW → RESOLVED
Closed: 17 years ago
Resolution: --- → WONTFIX
You need to log in
before you can comment on or make changes to this bug.
Description
•