Categories: MSDN / DotNet / Java / Scripts / Linux / PHP Ask - La ask - La Answer

HotSpot Vs Classic --Java Virtual Machines -which is the efficient??

HotSpot Vs Classic --Java Virtual Machines -which is the efficient?
[67 byte] By [umeshhavinal] at [2007-11-9 22:30:42]
# 1 Re: HotSpot Vs Classic --Java Virtual Machines -which is the efficient??
Hotspot is the more efficent machine. It performs inlining and optimizes
the frequently used portions of your program. In otherwords it optimizes
the "hotspots" in your program.

"umeshhavinal" <umeshh@in.gignext.com> wrote:
>HotSpot Vs Classic --Java Virtual Machines -which is the efficient?
>
>
Rob Abbe at 2007-11-11 23:00:48 >
# 2 Re: HotSpot Vs Classic --Java Virtual Machines -which is the efficient??
But sometimes Classic is more efficient than HotSpot.
There is an overhead for compiling the bytecode into native code by hotspot,
so if you run something which does not contains many repetitions, you might
find out that running in Classic is faster.
"Rob Abbe" <rabbe@mn.rr.com> wrote:
>
>Hotspot is the more efficent machine. It performs inlining and optimizes
>the frequently used portions of your program. In otherwords it optimizes
>the "hotspots" in your program.
>
>
>"umeshhavinal" <umeshh@in.gignext.com> wrote:
>>HotSpot Vs Classic --Java Virtual Machines -which is the efficient?
>>
>>
>
Marian Olteanu at 2007-11-11 23:01:54 >