由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Java版 - some simple matters take a long long time to have a solution
相关主题
Help needed on Java mail security issue问个入门问题。
什么是application servera prepared statement question
socket and simple web browsernewbie question
what kind of machine should I buy在手机上怎么远程控制一个房间的灯亮灯灭?
Re: 关于APPLET的IO问题Open Too Many Cursor Issue
Database Pooling 的问题Re: 哪位用过GIME (Java Chinese input) in Unix Netscap
How to connect to SQL2000?Re: Java里怎么调用unix下的command?
How to prevent double submission in web form?Re: 有感于《一个最近完成的JAVA项目的反思》
相关话题的讨论汇总
话题: long话题: servers话题: simple话题: still话题: conn
进入Java版参与讨论
1 (共1页)
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.

1 (共1页)
进入Java版参与讨论
相关主题
Re: 有感于《一个最近完成的JAVA项目的反思》Re: 关于APPLET的IO问题
Re: file permissions when using java creating filesDatabase Pooling 的问题
Re: 关于unix用户帐号How to connect to SQL2000?
Re: Help!!! Java in Unix. Thread. I need exit and ls concurrently runnHow to prevent double submission in web form?
Help needed on Java mail security issue问个入门问题。
什么是application servera prepared statement question
socket and simple web browsernewbie question
what kind of machine should I buy在手机上怎么远程控制一个房间的灯亮灯灭?
相关话题的讨论汇总
话题: long话题: servers话题: simple话题: still话题: conn