7 ms·
Every user/client operation is serial.
by drwiggly 3y ago
Every user/client operation is serial.
- byby 3y agoThis 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.