all groups > dotnet performance > october 2006
How to find the ComputerName on which my application is running
Posted by sridhar at 10/30/2006 1:49:27 PM
Can you find out how to retrieve the following information from the
currently executing context of code?
AppDomainName
ComputerName
ComputerIPAddress
ProcessID
ProcessName
ThreadName
Win32ThreadID (if applicable)
Thanks in advance,
Regards Sridhar Chinta
... more >>
networkstream perf using ReadByte
Posted by pmoore at 10/26/2006 3:01:03 PM
I have an app that reads TCP socket data by doing calling ReadByte for each
byte in the buffer (a fairly common model). It seemed pretty slow so one
experiment I did was to jiggle the code around to do one big Read(),
fortunately I knew the expected data size in advance
approximately 50 tim... more >>
DW.NET is unstable on havy loaded servers :(
Posted by Serg at 10/24/2006 2:14:04 PM
We have an application that can be used as an application server for
WinForms apps (using .NetRemoting) and can be used as WebServices server.
Everything is fine when server is low loaded.
But when we do a stress loading tests (many users, many requests) DW.NET
breakes down.
When our app serv... more >>
Performance difference between ArrayList and List<object> ?
Posted by Murat Ozgur at 10/20/2006 1:21:19 AM
Hello,
Is there any performance difference between ArrayList and
List<object> ? Which one should I use ?
Thanks.
... more >>
Are there a method replace Graphics.DrawImage ?
Posted by Nie longhai at 10/19/2006 12:00:00 AM
Hi,
Graphics.DrawImage is too slow,
Are there a method replace it?
DirectX ?
Who can give me some code sample?
thanks
--
_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
Nie Longhai, Coder ^_*
Shanghai Xomi Instruments Co.,Ltd.
Phone: 086-021-57513966(807)
Fax: 086-021-57513... more >>
System.OutOfMemoryException was thrown -- how to debug?
Posted by Jarno Leikas at 10/16/2006 10:49:01 PM
Hello,
we're hosting a number of web services in in Windows Server 2003. Lately
we've been getting daily problems with the server where the server just stops
responding to user requests (from a Winform client) and just giving a
System.OutofMemoryException exception (please see the end of th... more >>
Memory leaking when using CrystalReportViewer in an MDI applicatio
Posted by Rowland Shaw at 10/16/2006 3:23:01 AM
We've noticed that we're seeing problems with the CrystalReportViewer
component releasing resources in an Windows Forms 1.1 MDI environment.
Using perfmon to monitor the private bytes for the application in question,
we notice that the memory usage goes up by about 4Mb when a new client windo... more >>
Memory Leak
Posted by Amith at 10/13/2006 8:40:01 AM
Hi,
We are using UIP for windows forms. When we navigate across screens in our
application, the memory builds up making the system very slow.
Does UIP hold any pointers to the forms I navigate to ? Which are the
collections in the UIP that holds the pointers to the forms.
Any help to ad... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
XmlSerialization Object Memory Usage
Posted by Michael Cline at 10/11/2006 6:50:02 AM
Framework 1.1
Our environment requires us to deserialize xml messages into objects.
In doing some memory analysis I've found the following that doesn't make any
sense to me so I was hoping someone could shed some light on the issue.
Simple Object contains a string, int and bool, as well as ... more >>
SQL Performance Counters
Posted by Sachin Salgarkar at 10/11/2006 1:41:51 AM
I am trying to gather some data on Database connections pooling , usage of
pools, average # of connections in a ppol.
I ran Perfmon, selected ".NET CLR Data" ,Added the 3 counters under it .
However , there is no data for these counters.
I also tried to add a few counters under .NET Dat... more >>
Memory growth halts with use of Profiler
Posted by JeremyC at 10/9/2006 9:45:01 AM
I have .NET Windows Service that is growing and growing getting up to several
hundred MB in VM Size. However, when I attach a memory profiler to the
service, the growth stops and holds a steady state, usually around 40-50 MB.
Requesting the GC to force a Collect does not change the behavior.... more >>
.NET 1.1 FileStream class buffering (and related perf questions)
Posted by David at 10/9/2006 7:37:02 AM
I've got a VB.NET 1.1 app that must read a large number of very large binary
files four bytes at a time and write the data to an output file. I'm using
the synchronous Read, Seek and Write methods of the FileStream class. The
input files are on an NTFS 5 drive (and are "sparse" files, if th... more >>
|