发布网友 发布时间:2022-04-20 08:04
共2个回答
懂视网 时间:2022-04-30 09:07
var
proxy =
new
EventProxy();
var
status =
"ready"
;
var
select =
function
(callback){
proxy.once(
"selected"
,callback);
if
(status ==
"ready"
){
status =
"pending"
;
db.select(
"SQL"
,
function
(results){
proxy.emit(
"selected"
,results);
status =
"ready"
;
});
}
};
nodejs高并发sql
标签:
热心网友 时间:2022-04-30 06:15
有的,Nodejs的无阻塞模型对应高并发的是很不错的