←back to thread

Crystal 1.16.0

(crystal-lang.org)
131 points ksec | 1 comments | | HN request time: 0.242s | source
Show context
satvikpendem ◴[] No.43650003[source]
How has using Crystal been, anyone using it in production?
replies(6): >>43650049 #>>43650404 #>>43650442 #>>43650678 #>>43651362 #>>43656180 #
pankajdoharey ◴[] No.43650404[source]
I used it in production for a client last yr and i compared that with a go implementation. The concurrency support of crystal on a 40 Core machine beast the socks off golang. Crystal both maxes out all the cores to a high degree, on file io and overall speed of execution. The time taken to do the same task Crystal; beats go by a significant margin while being so easy to write. And go is a easy language to write but Crystal is so much more easy to read because of Ruby syntax inheritance.
replies(2): >>43650501 #>>43650603 #
1. samuell ◴[] No.43650603[source]
Can second about the concurrency syntax! Did a small comparison with Go a few years back [1].

I my tests I have got the feeling it is causing a lot less gotchas with blocking go-routines and such. Not sure why that is though.

Surprised to hear about the multi-core performance though! That is super interesting.

[1] https://livesys.se/posts/crystal-concurrency-easier-syntax-t...