Reputation: 525
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
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