c******n 发帖数: 4965 | 1 netty/SEDA/ finally comes down to UNIX select
all these years all these fancy concepts, basically people were still
trying to solve the problem of parallelly handling network/io requests,
until recently the only approach used by industry is to excessively
relying on OS and do
while ( conn = accept() ) {
new Thread(conn).start()
}
amazing this went on for so long and still a lot of servers (not only
web servers, but proprietory servers , for example cassandra) still do
this | r*****l 发帖数: 2859 | 2 To make thing work, you are good.
To make thing work and keep it simple, you are better.
To make think work reliably, securely, etc. and still keep it simple, you
are the best.
【在 c******n 的大作中提到】 : netty/SEDA/ finally comes down to UNIX select : all these years all these fancy concepts, basically people were still : trying to solve the problem of parallelly handling network/io requests, : until recently the only approach used by industry is to excessively : relying on OS and do : while ( conn = accept() ) { : new Thread(conn).start() : } : amazing this went on for so long and still a lot of servers (not only : web servers, but proprietory servers , for example cassandra) still do
| B*****g 发帖数: 34098 | 3 这个是不是就是大牛之间的相互吹捧?
【在 r*****l 的大作中提到】 : To make thing work, you are good. : To make thing work and keep it simple, you are better. : To make think work reliably, securely, etc. and still keep it simple, you : are the best.
|
|