Error!
Success!

By tag: Performance

showing:  of
0
kicks

Prevent JavaScript code blocking the UI thread with setTimeout + handy stopWatch to profile JS code  (Unpublished)

In early January of this year I was implementing some JavaScript code that does a lot of processing on the client side with the help of jQuery. It’s part of a project where my customer asked for the possibility of answering a questionnaire in two ways: using a Wizard (one question at a time) and Lis...


Kicked By:
Drop Kicked By:
0
kicks

C# Performance Benchmark Mistakes: Pt 1  (Unpublished)

In this series of articles, I'm going to go through some of the mistakes I frequently see people making who are attempting to write benchmarks in C#. But before we get into the mistakes, I suppose I should introduce myself and define the term...


Kicked By:
Drop Kicked By:
0
kicks

Website Performance with ASP.NET - Part4 - Use Cache Headers  (Unpublished)

See how cache headers can help you to improve you page load times and how to implement them in ASP.NET Websites.


Kicked By:
Drop Kicked By:
0
kicks

7 hard earned lessons from a Single Page Application  (Unpublished)

7 controversial techniques to boost performance of Single Page Applications (SPA) and achieve 3-4 second page load time. Find out when commonly used techniques like combining Javascript back fires.


Kicked By:
Drop Kicked By:
0
kicks

Reading large files in chunks with proper encapsulation  (Unpublished)

I've been doing some work lately which involves sequentially reading large files (> 2 to 5GB). This entails that it's not an option to read the whole structure in memory; it's more reliable to process the file in chunks. I occasionally come across legacy that solves exactly this problem, but in a pr...


Kicked By:
Drop Kicked By:
0
kicks

Website Performance with ASP.NET - Part3 - Make Fewer HTTP Requests  (Unpublished)

One of the keys to improving page load times is to reduce the number of requests. This post shows how that can be achieved in ASP.NET websites.


Kicked By:
Drop Kicked By:
0
kicks

Putting my IronMQ experiment under stress  (Unpublished)

A look at the things you run into when you have lots of threads pulling messages from a queue and processing them.


Kicked By:
Drop Kicked By:
0
kicks

Website Performance with ASP.NET - Part2 - Reduce Time to First Byte  (Unpublished)

This post shows how the time to first byte of ASP.NET pages can be reduced by profiling the code and implementing data and output caching.


Kicked By:
Drop Kicked By:
0
kicks

Website Performance with ASP.NET - Part1 - Measuring  (Unpublished)

This first part of a series about website performance with asp.net introduces tools and metrics for measuring the performance of a website.


Kicked By:
Drop Kicked By:
0
kicks

Why is application performance always a second class citizen?  (Unpublished)

Performance should be treated as a first class requirement of any application. Different types of applications will require more work in this department, but every app needs to have this a major concern when designing the archetecture.


Kicked By:
Drop Kicked By:
0
kicks

The EntitySpaces ORMBattle.NET Performance Numbers  (Unpublished)

Although the ORMBattle.NET charts have not been updated yet we thought we would share the results with you. The stats shown below are the stats that they will use to update the charts on their site (they use the 1000 item tests). We think we did pretty well. The numbers shown below are from the ORMB...


Kicked By:
Drop Kicked By:
0
kicks

DateTime.Now Causes Boxing  (Unpublished)

Have you known that every time you call DateTime.Now the BCL causes a dynamic memory allocation due to unnecessary boxing? This post dives into the implementation of the property, explain why this boxing occurs, and what can we do to in order to avoid id


Kicked By:
Drop Kicked By:
0
kicks

String.Format Isn't Suitable for Intensive Logging  (Unpublished)

Unlike the common conception, the StringBuilder class doesn't always offer better performance/memory usage results than other string concatenation methods (Join, Concat or the +operator). This post benchmarks the alternatives and explains the key differences between them.


Kicked By:
Drop Kicked By:
0
kicks

Optimising wildcard prefixed LIKE conditions | AdaTheDev  (Unpublished)

An overview on how to use indexed computed columns to optimise the performance of wildcard-prefixed LIKE conditions within an SQL query.


Kicked By:
Drop Kicked By:
0
kicks

SQL Server - Filtered Indexes  (Unpublished)

Having discussed about indexes into some level, now it is time to discuss new index type which came along with SQL Server 2008, filtered index. In filtered index, you can define index to the filter portion of your data.


Kicked By:
Drop Kicked By: