I have a little app on my IIS 8 server.
I takes from 10 to 15 seconds to start.
I read the Faq and install Application Initialization plugin and configured applicationHost file.
Below You can find my code:
<applicationPools><add name="DefaultAppPool" /><add name=".NET v4.5 Classic" managedRuntimeVersion="v4.0" managedPipelineMode="Classic" /><add name=".NET v4.5" managedRuntimeVersion="v4.0" /><add name="magazyn" autoStart="true" startMode="AlwaysRunning"><processModel identityType="LocalSystem" /></add><applicationPoolDefaults managedRuntimeVersion="v4.0"><processModel identityType="ApplicationPoolIdentity" /></applicationPoolDefaults></applicationPools><site name="magazyn" id="2" serverAutoStart="true"><application path="/" applicationPool="magazyn" preloadEnabled="true"><virtualDirectory path="/" physicalPath="%SystemDrive%\inetpub\wwwroot" /></application><bindings><binding protocol="http" bindingInformation="*:80:" /></bindings></site>
But even with this addings page loads very slow instead of being preloaded.
And even AlwaysOne tag page after some time It need to load again while trying to change page.
What should I do to fix it?