开发者

Starting up processes with a window service

开发者 https://www.devze.com 2023-03-19 02:48 出处:网络
I am asking a lot of questions today, but that because i know that you guy\'s are the best. 开发者_运维知识库To my question, we have built a window service that starts all of our self build applicatio

I am asking a lot of questions today, but that because i know that you guy's are the best.

开发者_运维知识库To my question, we have built a window service that starts all of our self build applications in our servers. we are doing it by

foreach(var path in paths)
{
  Process p = new Process(path);
  p.Start();
}

now.. should we recycle all of the Processes once a day? and is t more "right" to give each process an 'appDomain' of its own ?

0

精彩评论

暂无评论...
验证码 换一张
取 消