Shylock Hg

My own blog powered by Hugo and Ivy.

Typical Classification Of IO

2018-09-27


Basic conception

master <–IO–> slave

IO, data from one place to another.

Classification

blocking noblocking
synchronous master can’t do other things and need to query state of IO master can do other things and need to query state of IO
asynchronous master can’t do other things and needn’t to query state of IO master can do other things and needn’t to query state of IO

Linux network model