Re: why are my Worker in Firefox so slow?

2014-02-04 Thread Alex Harui
What does the os tools show for cpu usage? Maybe FF doesn't spread work to more than one or two cores. -Alex On 2/4/14 7:38 AM, "Marcus Fritze" wrote: >Hi, > >Ok, I have a main application and a worker. > >The worker is for very CPU intensive work. But I have a lot of "work" to >do at the same

Re: why are my Worker in Firefox so slow?

2014-02-04 Thread Marcus Fritze
Thanks for the quick response. Activity Monitor shows mostly 175 - 185 % and sometimes a max of 196 %. But my overall CPU usage is about 22%. Am 04.02.2014 um 16:51 schrieb Alex Harui : > What does the os tools show for cpu usage? Maybe FF doesn't spread work > to more than one or two cores. >

Re: why are my Worker in Firefox so slow?

2014-02-04 Thread Marcus Fritze
I think I was wrong, it seems that Chrome doesn't start a new process for every worker. But Chrome is still faster. Am 04.02.2014 um 16:38 schrieb Marcus Fritze : > Hi, > > Ok, I have a main application and a worker. > > The worker is for very CPU intensive work. But I have a lot of "work" to

Re: why are my Worker in Firefox so slow?

2014-02-04 Thread Sean Thayne
Ya, in my tests, it's much better to run 1 or 2 workers max. ~Sean class *Sean_Thayne* extends Developer { public $skype = "sthayne23"; public $gTalk = "s...@skyseek.com"; public $url = "www.skyseek.com"; } On Tue, Feb 4, 2014 at 10:23 AM,

Re: why are my Worker in Firefox so slow?

2014-02-04 Thread Alex Harui
Are the numbers the same for both FF and Chrome? Chrome may just have better optimization for workers. Chrome may have discovered that sharing between multiple processes is better than multi-threading for Workers. I'm not an expert on Workers and multi-threading, but I always thought that there

RE: why are my Worker in Firefox so slow?

2014-02-04 Thread Maurice Amsellem
- De : Sean Thayne [mailto:s...@skyseek.com] Envoyé : mardi 4 février 2014 18:25 À : users@flex.apache.org Objet : Re: why are my Worker in Firefox so slow? Ya, in my tests, it's much better to run 1 or 2 workers max. ~Sean <http://www.skyseek.com> class *Sean_Thayne* extends

Re: why are my Worker in Firefox so slow?

2014-02-04 Thread Marcus Fritze
ario." > > Maybe there is a fundamental reason for that ? > > Maurice > > -Message d'origine- > De : Sean Thayne [mailto:s...@skyseek.com] > Envoyé : mardi 4 février 2014 18:25 > À : users@flex.apache.org > Objet : Re: why are my Worker in Firefox