• Home
  • Raw
  • Download

Lines Matching +full:localhost +full:- +full:test +full:- +full:linux

11 $ ./gradlew :grpc-benchmarks:installDist
14 from the grpc-java directory.
16 You can now find the client and the server executables in `benchmarks/build/install/grpc-benchmarks…
18 The `C++` counterpart can be found at https://github.com/grpc/grpc/tree/master/test/cpp/qps
22 benchmarks run on localhost over loopback the performance of the underlying network is considerably
27 will print a warning and continue with the default localhost address.
32 ### Linux subsection
34 On Linux we can use [netem](https://www.linuxfoundation.org/collaborate/workgroups/networking/netem…
62 The QPS client comes with the option `--save_histogram=FILE`, if set it serializes the histogram to…
67- `-Xms` gives a lower bound on the heap to allocate and `-Xmx` gives an upper bound. If your prog…
68- `-verbose:gc` prints some basic information about garbage collection. It will log to stdout when…
69- `-XX:+PrintGCDetails` prints out very detailed GC and heap usage information before the program …
70- `-XX:-HeapDumpOnOutOfMemoryError` and `-XX:HeapDumpPath=path` when you are pushing the JVM hard …
71- `-XX:+PrintCompilation` will give you a detailed overview of what gets compiled, when it gets co…
72- `-XX:+PrintInlining` will give you a detailed overview of what gets inlined and why some methods…
73- It sometimes happens that a benchmark just doesn't make any progress, that is no bytes are trans…
74- Taking a heap dump of a running JVM is similarly straightforward. First get the process id with …
78 Newer JVMs come with a built-in profiler called `Java Flight Recorder`. It's an excellent profiler …