PostAsync is very slow

PostAsync is very slow

==================================
url = “http://webhook.site/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx”;

HttpResponseMessage response = await client.PostAsync(url, new StringContent(json, Encoding.UTF8, “application/json”));

It takes about 2 minutes

==================================
HttpResponseMessage response = await client.GetAsync(“http://google.co.jp”);

It takes about 7 minutes

Is it a configuration issue?

Performance is a known issue and it is being worked on. There is a lot of debug code still in the beta firmware and this will be removed at some point in the future. We are also working on moving from interpretation to AOT and this will bring performance benefits.

Regards,
Mark

1 Like

OK.
Thank you very much.
We are looking forward to it.