Hacker News new | ask | show | jobs
by drwiggly 1118 days ago
Every user/client operation is serial.
1 comments

This is mainly because it's single threaded and operates on in memory state. Async io doesn't apply to in memory so all operations have to be serial, is this characterization correct? Thanks.