0

Say I've a server on the same machine as some workers, each of which is talking to it. They could be talking over TCP or Unix Domain Sockets. How does the performance scale with number of workers and message size?

When I speak of performance, I'm looking for not only mean latencies, but also p90 and p99 latencies.

Nikhil Garg
  • 3,944
  • 9
  • 30
  • 37
  • This is dependent on many factors, the only answer is to perform benchmarks of your application. – Barmar Feb 01 '13 at 05:54

1 Answers1

0

As for TCP you can measure its performance youself (like this). Do a few tests. Set the length of buffer to read or write and run iperf in server mode and also run a few iperf processes in client mode. Then change the length of buffer to read or write.

Community
  • 1
  • 1