About

The performance of applications is often a paramount concern for mission critical systems. If your question pertains to optimization, whether it be database queries, algorithms, reducing network/transactional overhead, or anything that deals with speed or capacity, consider using this tag.

A good question states performance goals that need to be achieved as well as other restrictions. Trying to optimize something without measuring is not a "performance" question or work, but most likely personal entertainment - expect a question without goals/measurements to be treated as such.

Performance for many programs is represented in Big O notation, which classifies how an algorithm's resource requirements change in response to a change in input size.

This tag can also represent System Performance, which is one of key Non Functional Requirements of an application / system.

The two main measures of performance are

  • Throughput (how many in a time frame), e.g. TPS (Transactions Per Second), MB/s (Mega bytes per second), Gb/s (Giga-bits per second), messages/request/pages per second.
  • Latency (how long for an action). e.g. Seek time of 8 ms, Search time of 100 ms.

Latency is often qualified with a statistical measure. Note: latencies usually don't follow a normal distribution and have very high upper limits compared with the average latency. As such the standard deviation is not useful.

  • average latency. The average of all the latencies.
  • typical or median latency. The mid-point of the range of possible latencies. This is usually 50% to 90% of the average latency. As this is the lowest figure it is often reported by vendors.
  • percentile latency. The figure it is less than or equal to N% of the time. i.e. 99 percentile if the latency it is not more than this, 99 times out of 100.
  • worst or maximum latency. The highest latency measured.

When seeking to improve performance: prototype and measure first, optimize only if and where needed.

See also:

history|show excerpt|excerpt history