DNU recovery gives many "HTTP request requests"

I am trying to run samples from https://github.com/aspnet/home .
But I have problems updating links. Recovery is very slow and does not work for some packages:

GET http://www.myget.org/F/aspnetvnext/api/v2/FindPackagesById()?id='Microsoft.Framework.Configuration.EnvironmentVariables' Warning: FindPackagesById: Microsoft.Framework.Configuration.EnvironmentVariables HTTP request timed out. Retrying. GET http://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Configuration.EnvironmentVariables' Warning: FindPackagesById: Microsoft.Framework.Configuration.Ini HTTP request timed out. Retrying. GET http://www.myget.org/F/aspnetvnext/api/v2/FindPackagesById()?id='Microsoft.Framework.Configuration.Ini' Warning: FindPackagesById: Microsoft.Framework.Configuration.Ini HTTP request timed out. Retrying. GET http://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Configuration.Ini' Warning: FindPackagesById: Microsoft.Framework.Logging HTTP request timed out. Retrying. GET http://www.myget.org/F/aspnetvnext/api/v2/FindPackagesById()?id='Microsoft.Framework.Logging' Warning: FindPackagesById: Microsoft.Framework.Logging HTTP request timed out. Retrying. GET http://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Logging' Warning: FindPackagesById: Newtonsoft.Json HTTP request timed out. Retrying. GET http://www.myget.org/F/aspnetvnext/api/v2/FindPackagesById()?id='Newtonsoft.Json' Warning: FindPackagesById: Newtonsoft.Json HTTP request timed out. Retrying. GET http://www.nuget.org/api/v2/FindPackagesById()?id='Newtonsoft.Json' Error: FindPackagesById: Microsoft.AspNet.Mvc.Razor HTTP request timed out. Exiting. 

I tried to use different urls using nuget, myget, http, https.
I checked my internet connection. There is a problem in the dnx repo , but that did not help.
Any way around the problem?

I am using mono 4.0.3.20 on CentOS.

+6
source share
1 answer

Here is a workaround:

 export MONO_THREADS_PER_CPU=2000 

from http://www.mono-project.com/archived/articlethreadpool_deadlocks/

+7
source

All Articles