DotNetShoutout - Stories tagged with Performance
2
Shouts

InfoQ: Optimizing ORM Performance

published 436 days, 18 hours, 27 minutes ago posted by traskjdtraskjd 442 days, 18 hours, 9 minutes ago
Wednesday, March 14, 2012 7:55:55 AM GMT Thursday, March 08, 2012 8:14:29 AM GMT
This article on InfoQ looks at several techniques that can be employed by developers working with a modern ORM to achieve great performance in their applications. It investigates several scenarios where performance can be degraded and issues recipes to resolve those problems. (more)
category: Architecture | clicked: 76 | comment | | source: www.infoq.com
tags: Performance, LightSpeed, ORM
3
Shouts

Browse internet faster and save power using a smart HOSTS file

published 508 days, 6 hours, 46 minutes ago posted by oazabiroazabir 512 days, 13 hours, 11 minutes ago
Monday, January 02, 2012 7:37:30 PM GMT Thursday, December 29, 2011 1:12:45 PM GMT
If you can browse without having any flash ads or in fact any ads loaded and without any of the tracking scripts – you can browse much faster, scroll through pages much smoother and have more hours from your battery. Learn how to block unnecessary files using a smart HOSTS file. (more)
category: Web Dev | clicked: 31 | 1 comment | | source: omaralzabir.com
tags: Tips & Tricks, Performance, Windows
2
Shouts

When should you take performance into consideration?

posted by http://jclaes.blogspot.com/http://jclaes.blogspot.com/ 544 days, 9 hours, 22 minutes ago
Sunday, November 27, 2011 5:01:52 PM GMT
Before publishing my previous post on rewriting an if, I knew some people would hate it, because the refactored construct is less performant. Although I think performance is important, relevant performance improvements are, apart from in tight loops, hardly ever to find in language constructs. To put it more bluntly, they are a waste of time. (more)
category: Architecture | clicked: 12 | comment | | source: jclaes.blogspot.com
tags: Refactoring, Performance, clean code
2
Shouts

Tidy your HTML with Asp.Net TidyManaged vs Tidy.net

published 575 days, 11 hours, 34 minutes ago posted by jphellemonsjphellemons 577 days, 19 hours, 25 minutes ago
Thursday, October 27, 2011 2:49:45 PM GMT Tuesday, October 25, 2011 6:58:43 AM GMT
I recently stumbled upon a small bug which had to do with a part of C# code that cleans up an HTML string which came from a database. This string is used as output on the web and therefore needs to be w3c and tidy! I always used Tidy.Net for it. Really liked it and decided to check for a new version of that library while I was doing some code maintenance. That library's latest release date is from June 2005! that’s over 6 years old! So I decided to go and look for a better solution. I found the TidyMan... (more)
category: Web Dev | clicked: 32 | 1 comment | | source: www.jphellemons.nl
tags: Performance, w3c, ASP.NET
4
Shouts

Refreshthe WPF UI now: how to wait for the rendering to finish ?

published 629 days, 16 hours, 2 minutes ago posted by jmix90jmix90 630 days, 18 hours, 49 minutes ago
Saturday, September 03, 2011 10:20:57 AM GMT Friday, September 02, 2011 7:34:25 AM GMT
WPF is really awesome to build reactive applications and data binding is here to push useful information inside of the User Interface. All is done magically and it’s wonderfully simple to create an application without knowledge of the internals of the WPF’s rendering. Now, I wan’t to talk about something which can useful in every WPF application : how to wait for the rendering UI to be done. This can also be rephrased to : “how to force the rendering after I performed an action ?“. (more)
category: How To | clicked: 58 | 5 comments | | source: www.jonathanantoine.com
tags: Rendering, How-To, Performance, WPF, Force, UI, refresh, How
13
Shouts

Tweaking WCF to build highly scalable async REST API

published 660 days, 6 hours, 30 minutes ago posted by oazabiroazabir 663 days, 9 hours, 40 minutes ago
Wednesday, August 03, 2011 7:53:16 PM GMT Sunday, July 31, 2011 4:43:12 PM GMT
You can build async REST API using WCF but due to some bug in WCF implementation it does not scale as you would want it to. Here's my journey with Microsoft's WCF team to explore the problem and find the right fix. (more)
category: Web Dev | clicked: 63 | comment | | source: www.codeproject.com
tags: WCF 3.5., Performance, Scalability, REST
3
Shouts

Using SqlBulkCopy for high performance inserts

posted by http://jamescrowley.myopenid.com/http://jamescrowley.myopenid.com/ 675 days, 15 hours, 27 minutes ago
Tuesday, July 19, 2011 10:56:51 AM GMT
In the age of Object Relational Mapping frameworks (ORMs) it seems unusual to ever get “close to the metal” when it comes to persisting data. Developers are getting quite used to being abstracted away from the underlying data access technologies. However there are times when having a good understanding of what’s going on under the covers can allow you to look for alternative solutions when the ORM layer isn’t going to be as efficient as you need for a particular scenario. (more)
category: Data | clicked: 11 | comment | | source: www.developerfusion.com
tags: SQL Server, Performance
9
Shouts

Workaround For Crash In Performance Profiling Tools for WPF - Arik Poznanski's Blog

published 695 days, 17 hours, 29 minutes ago posted by arikarik 698 days, 17 hours, 59 minutes ago
Wednesday, June 29, 2011 8:54:36 AM GMT Sunday, June 26, 2011 8:23:58 AM GMT
Workaround For Crash In Performance Profiling Tools for WPFIntroduction Every WPF developer knows the situation where you have a large line-of-business application, you’ve implemented all the features and when you finally run it on real data – it runs s-l-o-w.Optimization Time! Optimization for performance is fun since a 1% change of code gets you 99% change in performance. However, finding the one location you should change can be a pain. This is why we’ve invented performance profilers. Profilers ca... (more)
category: Smart Client | clicked: 50 | 3 comments | | source: blogs.microsoft.co.il
tags: Performance, WPF
4
Shouts

Boost Performance by Using CDN in Your ASP.NET Site | ASP.NET 101

published 721 days, 9 hours, 12 minutes ago posted by JudoJudo 722 days, 14 hours, 34 minutes ago
Friday, June 03, 2011 5:11:01 PM GMT Thursday, June 02, 2011 11:49:39 AM GMT
A CDN (Content Delivery Network) is simply a network of data centers spread across the globe which serve static content to a user from the nearest available data center. Thus a request for a static file by a user in Australia would be served from a nearby AsiaPac data center instead of the US (where the main site may to served from). This reduces the latency and therefore boosts performance. A secondary factor boosting performance is that typically browsers can only open up 2 simultaneous connects to ... (more)
category: Web Dev | clicked: 21 | 1 comment | | source: www.aspnet101.com
tags: Performance, CDN
4
Shouts

Using Protocol Buffers on .Net platform (Part II)

published 733 days, 20 hours, 41 minutes ago posted by slo2olsslo2ols 735 days, 19 hours, 37 minutes ago
Sunday, May 22, 2011 5:42:02 AM GMT Friday, May 20, 2011 6:46:04 AM GMT
The last time we familiarized ourselves with Protocol Buffers and tried to use them in .Net application. Today, we continue to discuss and answer remaining questions. Specifically let's talk again about portability and using of protobuf-net in WCF. (more)
category: How To | clicked: 9 | comment | | source: osmirnov.net
tags: Google, protocol buffers, Performance, WCF
2
Shouts

Using Protocol Buffers on .Net platform (Part I)

published 735 days, 21 hours, 21 minutes ago posted by slo2olsslo2ols 736 days, 18 hours, 44 minutes ago
Friday, May 20, 2011 5:02:03 AM GMT Thursday, May 19, 2011 7:39:06 AM GMT
Today we will talk about using Protocol Buffers on .Net platform. I will tell  and show you what it is and why it is needed .Net developer. A format of the post is different from the usual format and it is designed as a discussion. What I think should improve the understanding of the material by readers. Hello, what is Protocol Buffers? (more)
category: How To | clicked: 10 | 1 comment | | source: osmirnov.net
tags: Google, Serialization, protocol buffers, Performance
11
Shouts

Common Windows Phone 7 Performance Challenges

published 745 days, 1 hour, 16 minutes ago posted by gergelyoroszgergelyorosz 745 days, 11 hours, 42 minutes ago
Wednesday, May 11, 2011 1:07:09 AM GMT Tuesday, May 10, 2011 2:41:31 PM GMT
This article collects the most important performance challenges when developing WP7 projects. (more)
category: Metro | clicked: 4 | comment | | source: www.visiblox.com
tags: Windows Phone 7, Performance
5
Shouts

How to Check How Many Writes Are Done While You Build? - Arik Poznanski's Blog

published 745 days, 1 hour, 16 minutes ago posted by arikarik 745 days, 15 hours, 23 minutes ago
Wednesday, May 11, 2011 1:07:09 AM GMT Tuesday, May 10, 2011 11:00:35 AM GMT
How to Check How Many Writes Are Done While You Build? In the following post I’ll show you how you can measure how many read and writes (in bytes) your build takes. This may prove useful since the amount of writes can have a tremendous effect on the build total time. More on how to shorten your build time in a future post.Step 1: Download Process Monitor The key for measuring the build read and writes is to download the great tool by Sysinternals, Process Monitor. Process Monitor is a tool which monit... (more)
category: Architecture | clicked: 5 | comment | | source: blogs.microsoft.co.il
tags: Build, Performance, measuring
4
Shouts

Boosting Stackoverflow.com

published 751 days, 13 hours, 29 minutes ago posted by slo2olsslo2ols 752 days, 18 hours, 57 minutes ago
Wednesday, May 04, 2011 12:54:12 PM GMT Tuesday, May 03, 2011 7:25:56 AM GMT
If you are readers of my blog, then you know that I write a lot of ORMs. Naturally, I could not miss a post of Sam Saffron about developing by him own lightweight ORM called Dapper. For those who do not know Sam, I want to point out that he is one of the key developers of Stackoverflow. In addition, before he wrote the post it was known about Stackoverflow's architecture that it was included the Linq-to-Sql. This is the main reason why I, like other developers, began to study the source code for Dapper. ... (more)
category: How To | clicked: 3 | 1 comment | | source: osmirnov.net
tags: C#, Performance, stackoverflow, ORM
2
Shouts

VS2010 SP1 New Features: Performance Wizard Support for Silverlight - Visual Studio Tips and Tricks - Zain Naboulsi

published 755 days, 11 hours, 11 minutes ago posted by iftekharahmedamitiftekharahmedamit 756 days, 5 hours, 26 minutes ago
Saturday, April 30, 2011 3:12:02 PM GMT Friday, April 29, 2011 8:56:59 PM GMT
This post represents a new path I’m taking with Visual Studio Tips and Tricks. In the past, I have limited the information to just Visual Studio (more)
category: Metro | clicked: 2 | comment | | source: blogs.msdn.com
tags: Silverlight, VS2010 SP1, Performance
5
Shouts

Optimizing Regex Performance, Part 3 [Ron Petrusha] - BCL Team Blog

published 786 days, 5 hours, 16 minutes ago posted by iftekharahmedamitiftekharahmedamit 786 days, 12 hours, 56 minutes ago
Wednesday, March 30, 2011 9:07:17 PM GMT Wednesday, March 30, 2011 1:27:26 PM GMT
Regular expressions in the .NET Framework support a number of grouping constructs, which allow a regular expression pattern to be grouped into one or more subexpressions. Grouping constructs are essential for creating backreferences, as well as for defining a subexpression to which a quantifier is applied. The Performance Impact of Capturing Groups The most commonly used grouping constructs in the .NET Framework regular expression language are (subexpression), which defines a numbered capturing group, a... (more)
category: How To | clicked: 3 | comment | | source: blogs.msdn.com
tags: Performance, Regex
4
Shouts

Ways to Load Applications Faster – A Windows Phone Recipe - Arik Poznanski's Blog

published 791 days, 19 hours, 3 minutes ago posted by arikarik 792 days, 3 hours, 11 minutes ago
Friday, March 25, 2011 7:20:06 AM GMT Thursday, March 24, 2011 11:12:47 PM GMT
Ways to Load Applications Faster – A Windows Phone Recipe Note: the following article was first published as part of the Windows Phone Recipe “Ways to Load Applications Faster” found here, which I wrote for Microsoft, together with Yochay Kiriaty.Purpose of This Document This document introduces the loading procedure for Windows Phone Silverlight applications. It explains common mistakes that application developers make during application launch, and how those errors can increase the total application ... (more)
category: Metro | clicked: 1 | comment | | source: blogs.microsoft.co.il
tags: Silverlight, Windows Phone 7, Windows Phone 7 Development, Performance, Windows Phone
9
Shouts

ADO.NET Entity Framework Performance Tips - Wriju's Blog

published 798 days, 11 hours, 9 minutes ago posted by iftekharahmedamitiftekharahmedamit 799 days, 10 hours, 49 minutes ago
Friday, March 18, 2011 3:14:29 PM GMT Thursday, March 17, 2011 3:34:47 PM GMT
Over a period of time I have been working with ADO.NET Entity Framework and I am flattered with its amazing usability. I am a big fan of EF and especially with EF4 release a lot more avenues are open. I love to talk about this technology in any forum and given a chance I would love to work on any implementation and migration. While doing all of these stuffs I found one big question which always comes to our mind is performance and it is quite obvious that for any data access technology performance is a b... (more)
category: Architecture | clicked: 4 | comment | | source: blogs.msdn.com
tags: ADO.NET, Entity Framework, Performance
2
Shouts

Deal with Performance in WPF applications

posted by abhi2434abhi2434 804 days, 5 hours, 3 minutes ago
Saturday, March 12, 2011 9:20:36 PM GMT
Hi friends, WPF is one of the major changes to the desktop applications in recent times. Most of us is using it in your day to day life programming. Some use for normal desktop or windows based applications while others write programs that run in browsers as Sandboxed application. The major investments of Microsoft on making silverlight to work out of browser enhanced the usage of WPF in a larger extent. But as for any other application, performance is the major issue for your application. Its not ho... (more)
category: How To | clicked: 0 | comment | | source: www.abhisheksur.com
tags: Performance, WPF, CSharp
6
Shouts

Performance Troubleshooting Article and VS2010 SP1 Change - Jason Zander's WebLog

published 809 days, 7 hours, 52 minutes ago posted by iftekharahmedamitiftekharahmedamit 810 days, 2 hours, 30 minutes ago
Monday, March 07, 2011 6:31:51 PM GMT Sunday, March 06, 2011 11:53:49 PM GMT
We are getting very near to the final release of VS2010 SP1 (if we were landing a plane the wheels would be down right now with the runway in front of us). Thanks again for all your feedback and stay tuned for the imminent release of the product. We’ve concentrated heavily on fixing issues you have reported, including those related to performance and reliability. The team has collected the most common scenarios we see that may cause issues and published it here: Visual Studio Troubleshooting .. (more)
category: How To | clicked: 0 | comment | | source: blogs.msdn.com
tags: VS2010 SP1, Performance, Troubleshooting, VS2010, SP1
Previous 1 2 3 4 5 6 Next