Live data from Hacker News

Rust is Not so Hairy

nevi.me

1–10 of 36 posts

Re: Rust is Not so Hairy

#2
A few people asked me about my experiences with Rust after I mentioned seeing significant performance improvements.

I wrote a blog post about it and open sourced both the Java and Rust code.

Re: Rust is Not so Hairy

#7
post #5
post #4

Good performance is not surprising, it's a statically compiled language.

That also holds for Java ;). The difference is in the targeted execution model.

Java is not statically compiles to machine code. It’s statically compiles to byte code which is hen interpreted or dynamically compiles to machine code.

So to way java is statically compiles is not quite correct in my opinion.

Re: Rust is Not so Hairy

#9
post #5
post #4

Good performance is not surprising, it's a statically compiled language.

That also holds for Java ;). The difference is in the targeted execution model.

Not really, Java always had AOT compilers to native code, they just happened to be commercial and we all know how modern developers love to pay for their tools.

Re: Rust is Not so Hairy

#10
post #5

Earlier quoted context omitted.

That also holds for Java ;). The difference is in the targeted execution model.

Java is not statically compiles to machine code. It’s statically compiles to byte code which is hen interpreted or dynamically compiles to machine code. So to way java is statically compiles is not quite correct in my opinion.

If you are talking about free Java compilers that is correct.

Most commercial compilers, specially those for embedded markets always had AOT native code as deployment option.

But now the bad Oracle is finally making the AOT compiler research they got from Sun Labs available for free.

Post reply on HN