Y
Hacker News
new
|
ask
|
show
|
jobs
by
FpUser
2029 days ago
>"but writing in C-like Java can give you C performance while still letting you interact with Java libraries & APIs."
Assuming those libraries do not do allocations of their own negating all the efforts.
2 comments
hawk_
2029 days ago
That's right. Java libraries even within JDK are notorious for unnecessary allocations and locks (which also do allocations for queues) putting GC pressure. C-like java means the need to roll out your own or using libraries like Chronicle.
link
coliveira
2029 days ago
I imagine that the other libraries would be used only on the non-critical parts of the application.
link