J
John Bailo
I wrote a console app that reads some fields from a database, does some
string parsing and writes the fields to a text file.
The slow step in loop is the string parsing.
I ran my code on 4 different machines, 1 with single proc, 1 with dual,
and 2 with quad. There were different memory sizes available from 0.5G
to 4G.
Here's the thing:
1. The program ran at exactly the same speed on all four machines!
2. Checking the taskmanager, it never seemed to consume more than 1-2
percent of processing, even though all the machines it ran on were
relatively idle.
How/Why can this be? Can I configure the CLR to use all available
resources to make an app run faster?
string parsing and writes the fields to a text file.
The slow step in loop is the string parsing.
I ran my code on 4 different machines, 1 with single proc, 1 with dual,
and 2 with quad. There were different memory sizes available from 0.5G
to 4G.
Here's the thing:
1. The program ran at exactly the same speed on all four machines!
2. Checking the taskmanager, it never seemed to consume more than 1-2
percent of processing, even though all the machines it ran on were
relatively idle.
How/Why can this be? Can I configure the CLR to use all available
resources to make an app run faster?