これはマルチスレッドのスケーラブルなHttpListenerの良い例ですか?非同期とタスクを待つマルチスレッドのHttpListener
これは実際のIISがどうやって行うのでしょうか?
public class Program
{
private static readonly HttpListener Listener = new HttpListener();
public static void Main()
{
Listener.Prefixes.Add("http://+:80/");
Listener.Start();
Listen();
Console.WriteLine("Listening...");
Console.WriteLine("Press any key to exit...");
Console.ReadKey();
}
private static async void Listen()
{
while (true)
{
var context = await Listener.GetContextAsync();
Console.WriteLine("Client connected");
Task.Factory.StartNew(() => ProcessRequest(context));
}
Listener.Close();
}
private static void ProcessRequest(HttpListenerContext context)
{
System.Threading.Thread.Sleep(10*1000);
Console.WriteLine("Response");
}
}
私は特にIISに依存しないスケーラブルなソリューションを探しています。代わりにhttp.sys(これはhttplistenerクラス)のみです。 - iISに依存しない理由は、govt。私が働く場所は、攻撃の表面積を非常に小さくする必要があります。
リンクは死んでいます... –
リンクを更新しました。コメントありがとう! –
セマフォとServicePointManager.DefaultConnectionLimitの使用に違いはありますか? –