简体   繁体   中英

How can I multiplex my asp.net web application under load?

This question is not a request to solve my question instead of me. I wonder your idea and experiences. Is it possible replication web app or server under pressure old heavy load.I made lots of research but I couldn't find any application or sample. Because of that, I don't know it's possible to create a web application or web server under request presure or heavy loaded.

For example I have a web application 192.168.5.1:8080 under IIS when Request becomes alot response time getting longer, I want to create a yml file like that:

if(request.Count>4000){
startReplicate.new.WebApp(192.168.6.2:8080);
startReplicate.new.WebApp(192.168.5.1:8081);
}
if(request.Count>8000){
startReplicate.new.WebApp(192.168.6.3:8083);
startReplicate.new.WebApp(192.168.5.1:8080);
}

this is possible or Can I do that Automatically? I mean that multiplexing web apps or crerating new web server.

您应该转到主机文件,它在Windows操作系统中的文件夹等下,只需在主机文件中写入您的ip,然后单击选项卡并输入服务器名称

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM