Stories recently tagged with 'Performance'

Speed up web services using the SoapDocumentMethod attribute(madskristensen.dk)

submitted by madskristensenmadskristensen(8565) 5 years, 6 months ago

The power of using web services as a means to create large connected systems are enormous but sometimes it can be a performance bottleneck. Here's a simple way of speeding it up. read more...

add a comment |category: |Views: 36

tags: another

Enterprise .NET Community: Tuning .NET, Part One: Performance monitors(theserverside.net)

submitted by javierRomerojavierRomero(1010) 5 years, 7 months ago

As server-side .NET development becomes more prevalent, Application Performance Management tools are becoming available to fine-tune .NET applications. And, as in the past, it seems that the ability to build new and more sophisticated applications always stays ahead of the ability to manage them. read more...

add a comment |category: |Views: 2

tags: another

WPF, once a Vista pillar, is experiencing poor performance on Vista.(blogs.msdn.com)

submitted by paulczypaulczy(15) 5 years, 7 months ago

This could turn out to be an issue for a lot of WPF applications running on Vista. read more...

add a comment |category: |Views: 14

tags: another

ASP.NET Performance through early binding(andreas-kraus.net)

submitted by reteepreteep(739) 5 years, 7 months ago

Why early binding is really important when it's about performance. read more...

add a comment |category: |Views: 5

tags: another

Avoid DateTime.Parse()(johnnycoder.com)

submitted by bengriswoldbengriswold(184) 5 years, 7 months ago

This article comments about DateTime.Parse() poor performance and provides an alternate approach. read more...

1 comment |category: |Views: 46

tags: another

Event Properties - Memory Efficient Events(vaultofthoughts.net)

submitted by mikeonmikeon(5200) 5 years, 7 months ago

Description of how to define events in a more memory efficient way. read more...

add a comment |category: |Views: 26

tags: another

Introducing Perf+ , A better perfmon(weblogs.asp.net)

submitted by gavinjoycegavinjoyce(25.7k) 5 years, 7 months ago

Perf+ is an advanced free extension of perfmon with a tabbed interface and a set of predefined counters you can modify and share with others. Great for real time viewing of a host machine's stats quickly. read more...

add a comment |category: |Views: 169

tags: another

Performance of foreach vs. List.ForEach(diditwith.net)

submitted by cls2degcls2deg(1535) 5 years, 7 months ago

Today I was iterating a List<int> using a foreach-loop and feeling a bit smug in knowing how much more performance-conscious I was being than if I'd tried doing the same thing with an ArrayList filled with ints. Thanks to the wonder of generics, the C# compiler neatly avoids numerous boxing operations by using a System.Collections.Generic.IEnumerator<int> instance instead of the older System.Collections.IEnumerator. Then I got to thinking: "is this really the fastest way?" Upon investigation, it turns that, no, it isn't the fastest way. read more...

1 comment |category: |Views: 367

tags: another

Find .NET Memory Leaks (componentfactory.com)

submitted by PhilWrightPhilWright(250) 5 years, 7 months ago

How do you track down a memory leak in .NET? Well here is a simple and effective technique that should work for you most of the time. read more...

add a comment |category: |Views: 9

tags: another

Exceptions and Performance in .NET - The True Cost of Exceptions(developerfusion.co.uk)

submitted by gavinjoycegavinjoyce(25.7k) 6 years, 4 months ago

Almost every time exceptions are mentioned in mailing lists and newsgroups, people say they're really expensive, and should be avoided in almost all situations. As an idea of just how expensive some people think they can be, in one article someone asked whether the fact that his web application was throwing about 200 exceptions an hour was likely to be harming his performance. Various people replied saying that it would indeed be causing a problem. This article examins the claim read more...

add a comment |category: |Views: 5

tags: another