valyala / gorpc

Simple, fast and scalable golang rpc library for high load
MIT License
701 stars 101 forks source link

add benchmark results to docs #9

Open gucki opened 9 years ago

gucki commented 9 years ago

You state your library is high performace, but It'd be great if the docs would contain some performance numbers/ benchmarks compared to net/rpc. Especially for different workloads (small requests, large requests with byte slices, ...).

valyala commented 9 years ago

I'll definitely add real-life benchmark results comparing gorpc to net/rpc (and, probably, other popular rpc implementations) into README.md.

Currently bench_test.go contains benchmarks, which can be used for performance comparisons with certain grain of salt. Here are results from my machine:

    $ go test -run=None -bench=rpc
    PASS
    BenchmarkNetrpcInt-4           50000         29676 ns/op
    BenchmarkNetrpcByteSlice-4     50000         30501 ns/op
    BenchmarkNetrpcStruct-4        20000         75986 ns/op
    BenchmarkGorpcInt-4           100000         20267 ns/op
    BenchmarkGorpcByteSlice-4      50000         21694 ns/op
    BenchmarkGorpcStruct-4         20000         62887 ns/op

These results may be far from real life, since both server and client are running on the same machine during benchmarks. In the real world client and server are usually located on distinct physical machines connected over the network. Gorpc should work faster in the real world, since it:

renanbastos93 commented 3 years ago

Maybe, we can put on benchmark to compare with gRPC