this post was submitted on 21 Apr 2026
2 points (53.1% liked)

Programming

26625 readers
110 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 2 years ago
MODERATORS
 

A ~200 LOC Rust crate benchmarked against ten other languages — came out ahead of a monomorphized C++ lib by ~4× at sub-fanout dispatch. Hot loop is six instructions. Can you make it faster?

all 3 comments
sorted by: hot top controversial new old
[–] Azzu@lemmy.dbzer0.com 23 points 1 day ago* (last edited 1 day ago)

I have no clue about the different event systems specifically, but generally the less features you want out of something, the easier it is to make it fast. I would assume the others don't need/want this extreme minimalism and trade it for something else.

From what I’ve seen, you might be might be able to beat that with Zig.