redgate

Stories kicked by redgate

.NET eBook: Practical Performance Profiling(www.red-gate.com)

submitted by redgateredgate(155) 1 month, 3 days ago

You can grab a free copy of this performance profiling eBook from here http://bit.ly/INLrpd read more...

add a comment |category: |Views: 42

tags: another

Ricky Leeks talks about .NET memory management on the .NET Rocks show(www.dotnetrocks.com)

submitted by redgateredgate(155) 1 month, 8 days ago

Carl and Richard have a discussion with a vegetable. Yeah, that's right, we interviewed a leek named Ricky Leeks. Beyond all the endless puns, is a great conversation about memory management in .NET. Ricky also lets us know about a free e-book on .NET Memory Management you can download from the links in the show. Check it out! read more...

add a comment |category: |Views: 109

tags: another

Top 5 Memory Management Gotchas(www.red-gate.com)

submitted by bsenoffbsenoff(1583) 1 month, 9 days ago

Unmanaged memory is often leaked when you forget to write code to deallocate it; however this can also happen because references are retained to the managed object which is responsible for deallocating it. read more...

add a comment |category: |Views: 214

tags: another

Profiling performance for Catel using ANTS Performance Profiler(blog.catenalogic.com)

submitted by redgateredgate(155) 2 months, 20 days ago

This blog post shows how to analyse the performance of your .NET application using MSTest and find the top 10 % worst performing methods. read more...

1 comment |category: |Views: 55

tags: another

Using Microsoft Robotics Developer Studio with Lego Mindstorms NXT Rob(www.simple-talk.com)

submitted by redgateredgate(155) 1 year, 9 months ago

A good way to learn about Robotics is to build a Lego Mindstorms NXT robot and to control it using Visual Studio and Microsoft Robotics Developer Studio. Although the results will hardly do the washing up for you, you'll gain valuable insights into thread synchronisation and coordination in a multiprocess, multi-code event-driven environment. Yes, and it is great fun too! read more...

add a comment |category: |Views: 83

tags: another

ANTS Performance Profiler 6(www.developerfusion.com)

submitted by james.crowleyjames.crowley(1212) 1 year, 9 months ago

We take an in-depth look at the latest incarnation of Red Gate's ANTS Performance Profiler and test it out on a real world .NET application to see how it fares. read more...

2 comments |category: |Views: 236

tags: another

How do you measure and analyse the performance of your .NET apps?(www.simple-talk.com)

submitted by redgateredgate(155) 2 years, 4 months ago

Are you programming in .NET? How important is application performance to your organisation? How do you measure and analyse performance? Please fill in this one-minute survey. All answers are anonymous. Thanks in advance for your input. Laila Lotfi Red Gate Software read more...

add a comment |category: |Views: 8

tags: another

The TekPub LINQ Challenge Part 2 – Faster Algorithms(www.codethinked.com)

submitted by javeryjavery(5523) 2 years, 4 months ago

Comparing performance of different ways of checking for prime numbers, including some interested benchmarks and use of parallel linq. read more...

1 comment |category: |Views: 180

tags: another

ASP.NET Performance - Part 3 - Cache Busting(codebetter.com)

submitted by karlkarl(265) 2 years, 4 months ago

Creating dynamic links based on file hashes to leverage far reaching expiry headers without sacrificing updatability. read more...

1 comment |category: |Views: 290

tags: another

.NET Memory Management(red-gate.com)

submitted by javeryjavery(5523) 2 years, 6 months ago

A great video explaining memory management in .NET read more...

add a comment |category: |Views: 481

tags: another

Profiling the Memory Usage of a .NET Application (simple-talk.com)

submitted by redgateredgate(155) 2 years, 10 months ago

Automatic memory management in .NET makes development a lot easier; however, it's still easy to introduce memory leaks into your application. For example, in a complex application, it's easy to forget to unregister event handlers, and these are notorious for holding on to objects which you don't need to keep in memory any more. This typically leads to an increase in memory usage which, if it remains unchecked and unresolved, can lead to your application exhibiting poor performance, or even running out of memory and crashing. This is where a memory profiler becomes necessary. read more...

add a comment |category: |Views: 434

tags: another