On Thu, 28 Feb 2008 22:07:41 -0800 (PST), Sanny
<softtanks@hotmail.com> wrote, quoted or indirectly quoted someone who
said :
>1. Give full resources to the Applet
>2. Put no restriction on Applet So that Applet can work as fast as
>possible.
>3. For Multiprocessor Systems give all 4/8/ cores to the applet to
>use.
You might look at Opera. You can configure it to turn off JavaScript.
It is small and fast. It uses Sun's JVM that is fully multithreaded.
However, Applets all run on the same thread unless you do explicit
multithreading.
see http://mindprod.com/jgloss/opera.html
--
Roedy Green Canadian Mind Products
The Java Glossary
http://mindprod.com
Sanny - 29 Feb 2008 08:30 GMT
> You might look at Opera. You can configure it to turn off JavaScript.
> It is small and fast. It uses Sun's JVM that is fully multithreaded.
> However, Applets all run on the same thread unless you do explicit
> multithreading.
I just create 10/12 threads in the Applet Will that not sufficient
for using all the cores?
Incase the user downloads Opera The Opera Browser will give full
provcessing power to the Java Applet and it will run as fast as an
Application?
Bye
Sanny
Roedy Green - 29 Feb 2008 08:32 GMT
On Fri, 29 Feb 2008 00:30:32 -0800 (PST), Sanny
<softtanks@hotmail.com> wrote, quoted or indirectly quoted someone who
said :
>I just create 10/12 threads in the Applet Will that not sufficient
>for using all the cores?
You don't have to do anything special to use all the cores other than
have N+ threads where n >= number of cores.
consider that even in a single threaded app, there are all kinds of
background system threads, not all the busy though.
--
Roedy Green Canadian Mind Products
The Java Glossary
http://mindprod.com
> I want to offer my Applet viewers to download a Browser that will help
> them run my applet at full speed without any restrictions.
[quoted text clipped - 9 lines]
> 3. For Multiprocessor Systems give all 4/8/ cores to the applet to
> use.
I think it is called running an Java application ...
:-)
Arne
Sanny - 29 Feb 2008 16:35 GMT
> > I want to offer my Applet viewers to download a Browser that will help
> > them run my applet at full speed without any restrictions.
[quoted text clipped - 15 lines]
>
> Arne
Yes that may be a solution. How fast is an Java Application to a Java
Applet will it by 4-5 times faster? Then it is worth downloading.
Thanks
Sanny
bugbear - 29 Feb 2008 16:48 GMT
> Yes that may be a solution. How fast is an Java Application to a Java
> Applet will it by 4-5 times faster? Then it is worth downloading.
What is your application that requires so much power?
BugBear
Arne Vajhøj - 29 Feb 2008 17:41 GMT
>>> I want to offer my Applet viewers to download a Browser that will help
>>> them run my applet at full speed without any restrictions.
[quoted text clipped - 10 lines]
> Yes that may be a solution. How fast is an Java Application to a Java
> Applet will it by 4-5 times faster? Then it is worth downloading.
The speed is a matter of the code not about the context.
But by switching from applet to application you will get rid of
all the applet restrictions.
Arne