all groups > dotnet performance > october 2003 > threads for october 8 - 14, 2003
Filter by week: 1 2 3 4 5
Machine.Config - too big? Best Practices?
Posted by Andy at 10/14/2003 9:22:18 AM
Concerns:
- Can the machine.config become too large? Clearly the larger the file to
process to more time it will take to parse but at what point will that
become an issue?
- what is recommended for configuration information in a hosting
environment? Can you supply existing docs that are supplie... more >>
null-ification
Posted by BAZRAMIT at 10/13/2003 1:05:11 PM
Hi,
I wonder, would assigning nulls to objects attract the GC to collect these
objects and free some memory.
... more >>
processor specific optimizations in .NET Framework
Posted by Joachim Kaufmann at 10/12/2003 2:27:07 AM
Hi all,
is it possible to do processor specific optimizations when you're writing
code for .NET Framework? Or do you have to rely entirely on the clr?
Joachim
... more >>
Pre-JIT without NGen
Posted by wgant NO[at]SPAM transcender.com at 10/9/2003 11:12:23 AM
Ok,
I got a small winforms app whose speed is absolutely horrible the
first time certain operations occur. I'm having particular problems
with owner drawn menus appearing promptly when they are first drawn
(that is, the first time ANY of my owner-drawn menus are drawn). After
the first time, ev... more >>
BeginInvoke for Raising events not async?
Posted by Rick Noltemy at 10/8/2003 11:06:51 PM
I have been testing a way to raiseevents to various
listeners asynchronously. Now what I really want, is the
app raising the event to continue processing, but also
for the other listeners to receive the events async
without one listener doing something stupid to block the
call. I am wo... more >>
Timers skipped
Posted by Zeev Jabotinsky at 10/8/2003 4:53:35 PM
All 3 types of timers in managed code (Form, Threading and
Server) give us the following problem: they should fire a
message transmission on a serial line every 50 ms. They do
it until one does something such as clicking on the task
bar (even in an empty location) or clicking a form button. ... more >>
Thread Pooling
Posted by Bom at 10/8/2003 5:22:23 AM
Hi,
I have a requirement where i am creating a Web based app
in ASP.Net which retrieves the data from 50 different data
sources.For this purpose i'av created a thread pool in
which i am queing the request for data from different data
sources.As of now i'av queued 50 request in the poo... more >>
|