假設現在有三個項目,ProjectA,ProjectB,ProjectC。 ProjectA項目中有倆個介面,Get(),GetTest( string code )。 ProjectB項目中一個介面,GetHelloWorld()。 ProjectC是一個後臺任務。 遇到的問題是: Project ...
假設現在有三個項目,ProjectA,ProjectB,ProjectC。
ProjectA項目中有倆個介面,Get(),GetTest( string code )。
ProjectB項目中一個介面,GetHelloWorld()。
ProjectC是一個後臺任務。
遇到的問題是:
ProjectA 項目的 Get介面 訪問 ProjectB 項目的 HelloWorld,此時 PojectC 項目請求 ProjectA 中的 GetTest, 這時問題就出現了,ProjectA 項目中的 GET 請求被阻塞,必須等到 PojectC 的訪問結束 ProjectA 訪問才能繼續執行…
我寫了一個demo
ProjectA代碼:
[HttpGet] public async Task<IEnumerable<string>> Get() { while ( true ) { try { Trace.WriteLine( $"{DateTime.Now} start web request" ); var apiUrl = $"http://localhost:2615/"; var res = await GetAsync( apiUrl ); Trace.WriteLine( $"{DateTime.Now} end web request" ); } catch { } } } [HttpGet( "{id}" )] public string Gettest( string code ) { return code; }
ProjectB項目代碼:
public class Startup { // This method gets called by the runtime. Use this method to add services to the container. // For more information on how to configure your application, visit https://go.microsoft.com/fwlink/?LinkID=398940 public void ConfigureServices(IServiceCollection services) { } // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app, IHostingEnvironment env) { if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); } app.Run(async (context) => { Trace.WriteLine(DateTime.Now.ToString()); await context.Response.WriteAsync("Hello World!"); }); } }
ProjectC項目代碼:
int threadCount = 100; Semaphore semaphore = new Semaphore( 0, 1000 ); for ( int i = 0; i < threadCount; i++ ) { new Thread( threadId => { for ( int j = 0; j < 100; j++ ) { try { using ( var client = new WebClient { Proxy = null } ) { Console.WriteLine( "thread{0}round{1}->{2}", threadId, j, client.DownloadString( $"http://localhost:40895/api/values/Gettest?code={Guid.NewGuid()}" ) ); } } catch ( Exception err ) { Console.WriteLine( "thread{0}round{1}->error", threadId, j ); } } semaphore.Release(); } ).Start( i ); }
不知道這時微軟的Bug還是我自己使用的問題,所以還請請各位博友幫忙看看這是什麼問題…