I'm new to asp web API and I created a hello world HttpResponseMessage and I'm using postman for testing it, but on the first try, it takes 12385 ms to response.
Is that normal? if it's not then what is the problem?!
public HttpResponseMessage Get() { HttpResponseMessage response = Request.CreateResponse(HttpStatusCode.OK, "value"); response.Content = new StringContent("Hello world", Encoding.Unicode); response.Headers.CacheControl = new CacheControlHeaderValue() { MaxAge = TimeSpan.FromMinutes(20) }; return response; }