Live data from Hacker News

Ask HN: Can Kotlin Native be a possible contender for Go on server side?

news.ycombinator.com

1–4 of 4 posts

Re: Ask HN: Can Kotlin Native be a possible contender for Go on server side?

#2
If you're optimizing for performance, you might consider C++. That said, if you're building software that accepts untrusted user input, there's a learning curve for adhering to secure coding practices:

https://www.securecoding.cert.org/confluence/x/BgE

Re: Ask HN: Can Kotlin Native be a possible contender for Go on server side?

#3
The big open question I have about kotlin native is the gc story, i.e. How is it implemented? Neither boehms (libgc) or reference counting are adequate solutions imo. Last I knew go was in the process of moving to a generational gc, state of the art as in hotspot jvm.

Also, the multi process, thread, coroutine, async io scheduling story in go is very compelling. Java (and by association kotlin) has lots if async server frameworks, but seems doubtful you'd get that level of integration unless they target it.