Nick
Nick

Reputation: 7525

What resources does .NET Windows Service use?

Does a process intensive Windows Service that handles heavy requests use more CPU, more RAM or both or neither?

In a nutshell, this Windows Service uses a 3rd party component in processing requests that take a long time to complete.

Anyone? Thanks

Upvotes: 0

Views: 111

Answers (1)

Thorarin
Thorarin

Reputation: 48486

The term "process intensive" refers to something that eats a lot of CPU cycles.

It may or may not also happen to use use a lot of RAM, but there is no direct relation between these two. A process can take a long time to complete without being process intensive in the above sense, for example if the computer is waiting on some kind of I/O like a disk or internet connection, or some kind of shared resource.

Upvotes: 3

Related Questions