Hello.<br><br>Cog performance is incredible. My application improved 3 times speedup. And I now does not need special caching logic in my program.<br><br>But I found very strange behavior in xml dom parsing of big text with many russian text (by XML-Parser XMLDOMParser class). <br>
<br>russionXml := String streamContents: [:s | s nextPutAll: &#39;&lt;root&gt;&#39;.<br>ššš 1000 timesRepeat: [<br>ššš ššš s nextPutAll: &#39;&lt;item&gt;&#39;.<br>ššš ššš s nextPutAll: &#39;ĘŁ×ĮŠŅĻĢÄ&#39;.<br>ššš ššš s nextPutAll: &#39;&lt;/item&gt;&#39;].<br>
ššš s nextPutAll: &#39;&lt;/root&gt;&#39;<br>ššš ].<br><br>[XMLDOMParser parseDocumentFrom: russionXml] timeToRun . <br><br>In pharo 1.1 I have<br><br>567 ms with old VM.<br>6673 ms with Cog VM.<br><br>But all other stuff that I tested work faster with Cog (at 3-4 times faster).<br>
<br><br><br>