Tagged Questions

10
votes
9answers
16k views

how to write super fast file streaming code in C#?

I have to split huge file into many smaller files. each of the destination file is defined by offset and length as number of bytes. I'm using the following code: private void copy(string srcFile, ...
2
votes
1answer
150 views

Web application Load Tests: What counters to look at?

During a stress/load test of a ASP.NET app hosted in IIS, what should I be monitoring on the app server? For example, the built in utility performance monitor in windows has a huge list of counters ...
2
votes
3answers
4k views

How to get thread CPU utilization metrics in Redhat Linux

I need to get CPU utilization metrics for all the threads in a process. Operating system = Redhat linux programming language = C++ using POSIX requirements = need to take samples every few seconds ...
0
votes
0answers
121 views

How to get status of congestionprovider option in Windows Vista & Windows 7?

Congestion provider is new service in Windows Vista (i assume Windows 7 contains it too) for squeezing more from your network bandwidth available. It applies only for applications using tcp protocol. ...
0
votes
4answers
84 views

How to utilize my computation resources

I wrote a program to solve a complicated problem. This program is just a c# console application and doesn't do console.write until the computation part is finished, so output won't affect the ...