| Thread | Last Post | Replies |
|
| rebase native images, please help | 29 Jun 2004 12:49 GMT | 6 |
I've some questions regarding rebasing. How does the process of ngen work which sets the base address? I observed that some native images have got the same base address. Will this harm the startup performance?
|
| Regarding Opening a 1GB File for Processing. | 28 Jun 2004 13:12 GMT | 10 |
Hi Group, I have a huge one GB file to do some processing (sorting) using .Net Framework (C-Sharp language). What is the best efficent way to do this. I have tried opening the file and reading it in blocks and do the sorting,
|
| Re: Memory Leak Experts!!!! | 28 Jun 2004 04:33 GMT | 26 |
Anynone? "microsoft.news" <msuot@dmod.com> wrote in message news:...
> Hi all, |
| Longer execution time under Release build... | 25 Jun 2004 12:58 GMT | 2 |
I was testing performance of the some classes recently and spotted strange behaviour: simple loop executes faster when compiled under debug configuration than release... Take a look: DateTime before;
|
| Application Center Test setting concurrent Users | 24 Jun 2004 01:13 GMT | 2 |
I am running an ACT test to stress my web application. I have created my script, which seems to work fine. I want to run with 500 concurrent users, but when I do this it seems the test center sends all 500 requests at once, this
|
| GC.Collect(2) | 23 Jun 2004 07:18 GMT | 2 |
I am trying to figure out how GC.Collect(2) works. here is what I did. I created a windows form with a button. on click of button, i have this simple code. object obj = new object();
|
| Object instantiation | 22 Jun 2004 17:12 GMT | 2 |
i have a big database interaction class with many CRUD operations in it. We create instance of the class, and call a single function. Something inside me tells i can gain a performance boost if i convert this database interaction class to static (Shared in VisualBasic). Is it ...
|
| where to see for performance | 19 Jun 2004 01:37 GMT | 3 |
Guys, could anyone suggest me the tools available for performance optimizations also, since i am new to the subject (apart from the basics), where to look for (bottlenecks etc) also, any book/url/tools(how to use them) will be highly appreciated
|
| Real life cost of using exceptions for control flow? | 18 Jun 2004 20:57 GMT | 67 |
Hi. I'm working with an app that uses exceptions for control flow. These are code blocks where exceptions are thrown/caught regularly. A couple hundred exceptions occur per hour and they're caught close to the point of origination. I'm trying to decide whether to refactor...
|
| BinaryWriter.Flush and BufferedStream.Flush | 18 Jun 2004 16:22 GMT | 8 |
I wish to use a BinaryWriter on top of a BufferedStream on top of a NetworkStream which is of course on a Socket. When I call the Flush method of the BinaryWriter I know that this should flush any data in the BinaryWriter's buffer, however does the BinaryWriter's
|
| CLR Profiler triggering VC++ debug library assert error | 17 Jun 2004 15:09 GMT | 1 |
The CLR Profiler tool always crashes part-way through when I use it to profile an app I'm developing. Outside of CLR Profiler, the app normally runs for about 20 minutes doing heavy text processing. With CLR Profiler it runs for about 2-5 minutes and then triggers an assert dialog ...
|
| clr hosting and startup time | 17 Jun 2004 07:13 GMT | 6 |
Can clr hosting improve startup time? For now we simply start the managed exe from within an unmanaged controller application. If we load the clr before starting an app will it boost the startup performance?
|
| arraylist.clear | 16 Jun 2004 18:43 GMT | 4 |
I have a class vaiable of type ArrayList, I would like the varaible never to be collcted by the GC, at some points however I need to call the clear method on the variable. Am I correct in thinking that the calling clear on this varaible, makes the variable elegable for GC to ...
|
| Remoting Performance Over Gigabit Network | 15 Jun 2004 15:47 GMT | 11 |
We are doing a project where we are transfering file data via .net remoting on a TCP/Binary channel. We did initial benchmarks on a 100 mbit network and compared our file transfer to the standard windows transfer (map a drive from the remote machine and copy the file). The windows ...
|
| EndAccept takes 5 seconds to throw ObjectDisposedException | 15 Jun 2004 07:50 GMT | 1 |
I am trying to close a socket on which I am listening. I know that this will cause the ObjectDisposedException to be thrown. The problem is that it takes 4-5 seconds for it to be thrown. Is this _normal_ or could it be due to some other issue? Sample code for this is below.
|