Discussion:
Performance problem
Wichert Akkerman
2008-08-15 15:34:45 UTC
Permalink
For some very mysterious reason my page rendering time increases by 10
seconds if I add this bit of html:

<fieldset class="comprehensive">
<legend>Intrekdatum</legend>
<ol class="date-eu">
<li class="day">
<label for="date-day">Date</label> <input name="date-day"
maxlength="2" />
</li>
<li class="month">
<label for="date-month">Month</label> <select name="month">
<option value="01">January</option>
<option value="02">Februari</option>
<option value="03">March</option>
<option value="04">April</option>
<option value="05">May</option>
<option value="06">June</option>
<option value="07">Juli</option>
<option value="08">August</option>
<option value="09">September</option>
<option value="10">October</option>
<option value="11">November</option>
<option value="12">December</option>
</select>
</li>
<li class="year">
<label for="date-year">Year</label> <input name="year"
maxlength="4" />
</li>
</ol>
</fieldset>


I have two fieldsets like that, which means I'm looking at a 20 second
redering time for a pretty simple html page.

If I comment it out using <!-- .. --> render time is normal.

Wichert.
--
Wichert Akkerman <***@wiggy.net> It is simple to make things.
http://www.wiggy.net/ It is hard to make things simple.


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "z3c.pt" group.
To post to this group, send email to ***@googlegroups.com
To unsubscribe from this group, send email to z3c_pt+***@googlegroups.com
For more options, visit this group at http://groups.google.com/group/z3c_pt?hl=en
-~----------~----~----~----~------~----~------~--~---
Wichert Akkerman
2008-08-16 10:40:25 UTC
Permalink
Post by Wichert Akkerman
For some very mysterious reason my page rendering time increases by 10
<fieldset class="comprehensive">
<legend>Intrekdatum</legend>
<ol class="date-eu">
<li class="day">
<label for="date-day">Date</label> <input name="date-day"
maxlength="2" />
</li>
<li class="month">
<label for="date-month">Month</label> <select name="month">
<option value="01">January</option>
<option value="02">Februari</option>
<option value="03">March</option>
<option value="04">April</option>
<option value="05">May</option>
<option value="06">June</option>
<option value="07">Juli</option>
<option value="08">August</option>
<option value="09">September</option>
<option value="10">October</option>
<option value="11">November</option>
<option value="12">December</option>
</select>
</li>
<li class="year">
<label for="date-year">Year</label> <input name="year"
maxlength="4" />
</li>
</ol>
</fieldset>
I have two fieldsets like that, which means I'm looking at a 20 second
redering time for a pretty simple html page.
For those who don't follow irc: Malthe's refactoring from last night fixed this.

Wichert.
--
Wichert Akkerman <***@wiggy.net> It is simple to make things.
http://www.wiggy.net/ It is hard to make things simple.


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "z3c.pt" group.
To post to this group, send email to ***@googlegroups.com
To unsubscribe from this group, send email to z3c_pt+***@googlegroups.com
For more options, visit this group at http://groups.google.com/group/z3c_pt?hl=en
-~----------~----~----~----~------~----~------~--~---
Loading...