N
nicerun
I'm using the Application_Start event at Global.asax.cs to invoke
thread that do some job.
I know that Application_Start event occurs when the very first request
to Web Application received.
- Setting worker process count
1. Start | Programs | Administrative Tools | Internet Information
Services
2. Right-click on the application pool, e.g. ‘DefaultAppPool’, and
select ‘Properties’
3. In performance tab you can change the worker process count
In case of 1 worker process it works fine. Only one thread runs.
But in case of multi process. The count of thread is same as the count
of processes.
I thought that the Application_Start event occurs in every process.
Is this behavior is natural or I've been using Application_Start in
wrong way?
Thank you.
thread that do some job.
I know that Application_Start event occurs when the very first request
to Web Application received.
- Setting worker process count
1. Start | Programs | Administrative Tools | Internet Information
Services
2. Right-click on the application pool, e.g. ‘DefaultAppPool’, and
select ‘Properties’
3. In performance tab you can change the worker process count
In case of 1 worker process it works fine. Only one thread runs.
But in case of multi process. The count of thread is same as the count
of processes.
I thought that the Application_Start event occurs in every process.
Is this behavior is natural or I've been using Application_Start in
wrong way?
Thank you.