It’s Faster Because It’s C
pl.atyp.us
It’s Faster Because It’s C
1–10 of 122 posts
Re: It’s Faster Because It’s C
#2Re: It’s Faster Because It’s C
#3Re: It’s Faster Because It’s C
#4Faster is not always what we are after though. I recently wrote a piece of code to run in tightly constrained (but not embedded) environments, and C was the natural choice. The Python or PHP or JavaScript interpreter and VM just wouldn't fit in the RAM.
Re: It’s Faster Because It’s C
#5C(++) has got a lower memory footprint than Java/C# which is also quite important.
Re: It’s Faster Because It’s C
#6Re: It’s Faster Because It’s C
#7Re: It’s Faster Because It’s C
#8Re: It’s Faster Because It’s C
#9Re: It’s Faster Because It’s C
#10Faster is not always what we are after though. I recently wrote a piece of code to run in tightly constrained (but not embedded) environments, and C was the natural choice. The Python or PHP or JavaScript interpreter and VM just wouldn't fit in the RAM.
Sometimes you don't want to suck up all of the RAM on a non-embedded machine, either. Also faster startup times and no collector pauses. A lot of times those are required.
If you don't know what to look for you could end up looking for a long time.