我写了个访问oracle的,在windows 下测试如下不会崩溃,但在linux下却出现Segmentation fault 。求大神帮忙。
http.createServer(function(req,res){
conn_pool.acquire(function(err,conn){ if(err){ res.end(err); return; }
conn_pool.release(conn);
res.end(‘1’); })
}).listen(8888);
代码在 https://github.com/zhs077/node-oracle 测试方法./ab -n 100 -c 1 http://localhost:8888/ 十分感谢。