Rust is Not so Hairy
nevi.me
Rust is Not so Hairy
1–10 of 36 posts
Re: Rust is Not so Hairy
#2I wrote a blog post about it and open sourced both the Java and Rust code.
Re: Rust is Not so Hairy
#3A 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
#4Re: Rust is Not so Hairy
#5Good performance is not surprising, it's a statically compiled language.
Re: Rust is Not so Hairy
#6Re: Rust is Not so Hairy
#7Good performance is not surprising, it's a statically compiled language.
That also holds for Java ;). The difference is in the targeted execution model.
So to way java is statically compiles is not quite correct in my opinion.
Re: Rust is Not so Hairy
#8Re: Rust is Not so Hairy
#9Good performance is not surprising, it's a statically compiled language.
That also holds for Java ;). The difference is in the targeted execution model.
Re: Rust is Not so Hairy
#10Earlier 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.
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.