Technology · Germany · informational

What Is Latency? Network and System Delay Explained

Latency is the time delay between sending a request and receiving a response — how long data takes to travel from one point to another and back. When you click a link and wait a beat before the page loads, or when a video call lags behind the speaker's lips, you are experiencing latency. It is measured in milliseconds (ms) and is separate from how much data your connection can carry at once.

What It Is

Think of latency like mail delivery time, not mailbox size. Bandwidth is how wide the highway is — how many cars (data packets) can travel at once. Latency is how long one car takes to reach its destination and return. A wide highway does not help if every trip still takes ten minutes.

Latency appears everywhere in computing:

| Context | What latency measures |

|---------|----------------------|

| Network | Round-trip time (ping) between your device and a server |

| Storage | Time to read or write data from a disk or SSD |

| Applications | Delay between user action and visible result |

| Audio/video | Buffering and sync lag in streams and calls |

Round-trip time (RTT) is the common network metric — send a small packet, wait for acknowledgment, measure elapsed time. A ping of 20 ms feels instant for browsing; 200 ms feels sluggish in fast-paced online games.

Why It Matters

Online gaming punishes high latency. Your character may react a fraction of a second after you press a button because your input must reach the game server and updates must return. Competitive players often seek sub-50 ms connections to regional servers.

Video calls and VoIP need low latency for natural conversation. Above roughly 150–200 ms, people talk over each other because audio arrives late.

Financial trading and real-time collaboration depend on milliseconds. High-frequency systems colocate servers near exchanges specifically to cut latency.

User experience on websites suffers when server response times drag. Google and other search engines treat Core Web Vitals, including server response latency, as quality signals.

Cloud and distributed systems must account for latency between data centers. A database replica across an ocean adds delay that affects consistency and failover design.

How It Works

When you load a webpage, latency accumulates across several hops:

1. DNS lookup — resolving the domain name to an IP address (often 10–50 ms).

2. TCP/TLS handshake — establishing a secure connection (one or more round trips).

3. Server processing — the backend queries databases and builds HTML or JSON.

4. Transit — packets travel through routers, undersea cables, and Wi-Fi links.

5. Client rendering — browser paints the page (separate from network latency but feels similar to users).

Each hop adds delay. Light in fiber travels roughly two-thirds the speed of light in vacuum, and routing is never a straight line. Geographic distance is a hard floor — New York to London cannot be faster than physics allows, even with perfect equipment.

Factors that increase latency

  • Physical distance to the server
  • Congested networks — queues at routers during peak hours
  • Wi-Fi interference or weak cellular signal
  • Slow DNS or missing CDN (content delivery network) caching
  • Heavy server load or unoptimized database queries
  • VPN routing that sends traffic through distant exit nodes

Latency vs. throughput

A gigabit home connection can still feel slow if latency is high. Downloading a large file uses throughput (Mbps). Interactive tasks — gaming, typing in Google Docs, stock tickers — depend on low latency.

Common Examples

| Scenario | Typical latency concern |

|----------|------------------------|

| Competitive FPS gaming | 20–80 ms to game server |

| Zoom / Teams call | Under 150 ms for smooth talk |

| ATM bank authorization | Low ms within card network |

| Satellite internet (LEO vs GEO) | GEO adds 500+ ms; Starlink-style LEO much lower |

| Local SSD vs. cloud storage | Microseconds vs. tens of milliseconds |

Content delivery networks (CDNs) like Cloudflare and Akamai cache static assets closer to users, cutting latency for images and scripts without changing origin server location.

Common Misconceptions

"Fast download speed means low latency"

Speed tests measure throughput, not ping. You can have 500 Mbps downloads and 120 ms latency — fine for Netflix, painful for competitive gaming.

"Latency is only a Wi-Fi problem"

Ethernet reduces local jitter, but transcontinental routing and server-side delays still dominate for many sites.

"Zero latency is achievable"

Physics sets minimums. Engineers minimize latency; they do not eliminate it. Even edge computing moves work closer but cannot break the speed of light.

"Ping and latency are unrelated"

In networking, ping is the practical measurement of latency — usually ICMP echo round-trip time.

"More bandwidth fixes laggy games"

Games send small, frequent packets. Bandwidth upgrades help 4K streaming more than they help a lightweight multiplayer shooter if ping stays high.

FAQ

What is a good latency for gaming?

For most online games, under 50 ms to the game server feels responsive; 50–100 ms is playable; above 150 ms, competitive play suffers noticeably.

How do I check my latency?

Use ping in a terminal (ping google.com) or built-in speed-test tools that report ping or jitter alongside download speed.

What is jitter?

Jitter is variation in latency over time — packets arriving unevenly. Voice and video codecs buffer slightly to smooth jitter, adding a small delay tradeoff.

Does a VPN increase latency?

Usually yes. Traffic routes through an extra server, often in another city or country, adding one or more round trips.

Is latency the same as lag?

Colloquially yes. Technically, lag can also mean server-side slowdowns, frame drops, or input delay unrelated to network RTT.

When Latency Matters Most

Latency hits hardest on interactive workloads — competitive gaming, voice calls, remote desktop, and live trading — where humans notice delays under 100 ms. Bulk downloads and email tolerate higher RTT because throughput dominates. If your connection feels "slow" despite fast speed tests, measure ping and traceroute before upgrading bandwidth.

The Takeaway

Latency is delay — the time between action and response in networks, storage, and applications. Bandwidth moves bulk data; latency determines how snappy interactive experiences feel. Distance, routing, server speed, and local connection quality all shape it.

*This article is for general informational purposes only and does not constitute professional network engineering advice.*

What Is Latency? Network and System Delay Explained | All Over The World