logoalt Hacker News

ppeetteerrtoday at 2:21 PM3 repliesview on HN

Not quite systems programming but this might give you some insight. Swift is memory efficient, and runs stable backend services. I've seen benchmarks showing that it's slightly more performant than typescript but twice as memory efficient (but not as efficient when it comes to memory management compared to Rust, C, and C++).

The other point I've seen is that its string library is slow and very accurate.

Besides that, the C-interop means you have quite a bit of flexibility in leveraging existing libraries.


Replies

fauigerzigerktoday at 2:37 PM

>The other point I've seen is that its string library is slow and very accurate.

Swift strings default to operating on grapheme clusters, which is relatively slow. But you can always choose to work with the underlying UTF-8 representation or with unicode scalars, which is fast.

The only situation where UTF-8 incurs overhead is if the String comes from some old Objective-C API that gives you a UTF-16 encoded String.

show 2 replies
ComputerGurutoday at 2:37 PM

Being only slightly more performant than an interpreted GC-only language is hard to believe (even though typescript is just a spec and you probably meant slightly more performant than v8).

show 1 reply
wahnfriedentoday at 2:55 PM

For web server benchmarks, it’s far behind typescript. Async has further degraded performance competitiveness

It also has C++ interop btw