| Max number of assemblies/clases in GAC (7 replies, VIP) |
| microsoft.public.dotnet.framework.performance |
| Is there a limit for number assemblies or number of classes that can be hosted in GAC? Could some one please comment on this? Thanks. Raghu/.. |
|
| investigating unmanaged memory (2 replies) |
| microsoft.public.dotnet.framework.performance |
| I was looking at some performance counters related to my application. The private bytes comes out to be around 110 MB and the #Bytes in Heap, around, 24 MB. This would indicate that about 86 MB is being taken up by unmanaged memory. Our application does interop to a few COM objects. How can i peek into this memory and find out which objects comprise the native/unmanaged memory portion of the appli... |
|
| pinned data and garbage collection (4 replies, VIP) |
| microsoft.public.dotnet.framework.performance |
| Does anyone have any detailed insight on how pinned data for unsafe code really affects memory allocation and garbage collection over the life of the application? I know that pinned data cannot be moved in a garbage collection. So, if a garbage collection occurs while some code is inside a unsafe "fixed" block, the pinned data will not be relocated and the managed heap becomes fragmented. Doesn't ... |
|
| Shared member - performance (2 replies, VIP) |
| microsoft.public.dotnet.framework.performance |
| Hi, We are using general DAL class for all common DB routines. That class has many shared member functions which can be called without instantiating the class. My questions, in a multiuser environment, as there is no instantiation involved for this class, how the function calls are processed? Will there be any performance issue? I have seen many MSDN code examples uses public shared function for c... |
|
| The Big Question... (3 replies) |
| microsoft.public.dotnet.framework.performance |
| I am constantly struggling with the problem of what 'type' of application to develop. WinForm or WebForm? The customer says I need a central database for all sites but the sites are geographically disperse limited to DSL Internet access (VPN solution not an option due to huge support burden). The users at each site want a rich, high performance interface but the folks back at headquarters want a b... |
|
| help with interpretation of perf data for a slow app (2 replies, VIP) |
| microsoft.public.dotnet.framework.performance |
| Hi, We have an asp.net web application that starts to perform poorly with about 12 concurrent users. I went through the process of collecting the relevant performance counters and am trying to sort out what i am seeing. The web server is a 2 CPU machine with 1 GB RAM. Our application is the only one that runs on the web server. It interops with some COM objects. Framework version is 1.1. Not using... |
|
| Parent.ProcessName causing "No Disk" error (2 replies) |
| microsoft.public.dotnet.framework.performance |
| I have a C# program which needs to determine how it was initiated. If it was initiated by the command line or from being double clicked in Windows Explorer than I want to display errors in message boxes. However, when I check parentProc.ProcessName, I get the "No Disk" error (this is on systems with removable drives). If I click Continue for each of these (3 total) it continues successfully. Does ... |
|
| .NET, ActiveX, & my journey into IL Hell... (13 replies, VIP) |
| microsoft.public.dotnet.framework.performance |
| I was tasked to build a .NET/C# server side application that'd answer calls from a modem bank & allow Zmodem uploads. I was given Sax's SaxComm8 ActiveX component (already paid for & not much else out there handles Zmodem; also, new Sax.NET framework STILL doesn't offer Zmodem support yet). With the help of VS.Net, I got the Interop & AxInterop DLL's generated & working & thought all was well. Tha... |
|
| Sluggish Visual Studio Startup and Runtime (9 replies) |
| microsoft.public.dotnet.framework.performance |
| I have a P4 1.7 GHz with 768 MB DRAM running XP Pro. I've been using Visual Studio .Net 2003 with Framework 1.1 for about a year. About 2 months ago my Visual Studio began loading extremely slowly and running sluggishly in general in many areas including editing source, starting and stopping debugging, loading even simple XML Schemas and even closing the IDE. On average it takes about 45 seconds t... |
|
| References (4 replies) |
| microsoft.public.dotnet.framework.performance |
| Is it possible to use references in .Net or only the use of pointers is permitted? Thank you |
|
| Caching often-used SQL queries (4 replies, VIP) |
| microsoft.public.dotnet.framework.performance |
| Suppose in a .net application a user sees his homepage, which includes many elements the requires sql queries. Each user sees a different homepage obviously. Executing these queries every time a user goes to his homepage is obviously going to drain a lot of systems resources, especially since most of the time it's the same. What are some of the ways to make this efficient? Perhaps some sort of cac... |
|
| Strange behavior during appdomain unloading (8 replies, VIP) |
| microsoft.public.dotnet.framework.performance |
| Folks I am observing some weird behavior in our application during shutdown, let me see if I can explain this clearly. Lets say I open 2 instances A and B of the application on my machine. Regardless of what order I shutdown the instances, the process associated with A always takes longer to end than the process associated with B. Also there is a noticeable 100% CPU spike during the shutdown of in... |
|
| Memory leak? (2 replies) |
| microsoft.public.dotnet.framework.performance |
| Hi, I've got a memory leak, or something that looks like one. In order to recreate same problem open a C# Windows application project. Add a UserControl (MyUserControl) to your project. Add a button and timer to the form. Add following code to your form. Make sure to bind button1 with the Click and timer1 with Tick events. private MyUserControl uc; private void button1 Click(object sender, System.... |
|
| Directory query speed (3 replies) |
| microsoft.public.dotnet.framework.performance |
| hi, I have a query to a LDAP directory which is supposed to get a list of records to be displayed in an ASP.NET page. There is not many of them, almost 3 dozen. But the query is rather long, too long for a web page indeed. Is there a way to optimize such queries? Thanks Here what I'm doing: ldsSearch New DirectorySearcher(deEntry) ldsSearch.SearchScope SearchScope.OneLevel dtTemp New DataTable() d... |
|
| My problem? or a Garbage collector problem? (3 replies, VIP) |
| microsoft.public.dotnet.framework.performance |
| I have a Console Application that run as Server Application, the application run perfect but after 5 hours aprox. the memory (Phisical and Virtual) increase too much making the OS inestable and producing the tipical "Out Of Memory" Windows Message box. So, I create I timer that every 10 minutes run the GC manually calling the GC.Collect() method, but nothing happend. So, as a finally breathing, I ... |
|
| Strategy for Sorting in UI (3 replies) |
| microsoft.public.dotnet.framework.performance |
| well i'm having almost the same problem. I'm displaying page wise records in an aspx page. (DNA archecture using enterprise service and remoting) Suppose the user has requested to see data from the customer table. The customer table may contain 100 or even thousands of records, and I do not want to fetch all records from the customer table, so I break up the result into pages of data by using Top ... |
|