Sarah
Sarah

Reputation: 525

What is meaning of low latency high volume systems/applications?

In many Job descriptions for a Java developer , I see this line : Experience of working on low latency , high volume systems/applications? what is the exact meaning of this sentence?

Upvotes: 3

Views: 5374

Answers (1)

David R Tribble
David R Tribble

Reputation: 12214

Low latency: Fast response time from individual requests. Usually means that you know about optimizing database queries, data caching, pipelining, etc.

High volume: Many requests, typically thousands per second. Usually means that you know about large-scale multithreading, distributed databases, data and session caching, etc.

Upvotes: 17

Related Questions