Viewing profile — zephyri
zephyri
HN member- Joined
- Wed, Sep 28, 2016, 6:39 PM UTC
- HN karma
- 1
- Public activity
- 2 items
- HN profile
- View on Hacker News ↗
About zephyri
No profile information was provided.
Recent public activity
-
comment
Comment #12867836
I mean that, in an event loop, synchronous code is blocking code. If you could synchronously run a database query in Node, nothing else would be allowed to execute while you waited…
-
comment
Comment #12866635
Go. It's what I love most about it. If something needs to wait for a response, e.g., a database call, your goroutine just pauses without blocking any other goroutine, even if you'r…