I'm running a nodeJS REST api on windows server using IIS7.5 with iisnode.
I note that the node process is not always active in background so sometimes response takes more time due to loading since it needs to create all connections and other stuff to get data for responses.
I run my application under default application pool.
I set the settings(applicationHost.config) of the startMode="AlwaysRunning"
and followed the guide here:
http://www.schwammysays.net/auto-starting-websites-on-iis-7-5/
I know that if I choose not to work with IISNode I can do it with forever, but we really need it to work with IISNode and we would like the process to be run as like it's running with forver.
Do you guys have any suggestions? did you have have a similar problem before?
Thanks in advance,
Max.