George
George
this probably causes #1.
The reflection is causing slow downs on large data sets. Better to remove this as the language doesn't even properly support it.
The RedBlackTree is currently hitting the CPU limit on large data sets. Possibly caused by method overhead or dynamic type checking at run time.
The SkipList struct is only partially functioning. It needs to be debugged and finished.
The AVLTree is currently only partly functioning. It needs to be finished.
The Dockerfile for `java_vertx_grpc` specifies `-XX:+UseSerialGC`. Separate benchmarks for each GC should probably be made or [this line](https://github.com/LesnyRumcajs/grpc_bench/blob/master/java_vertx_grpc_bench/Dockerfile#L9) should probably be removed to just let the VM select the most...
The command returns posix shell: https://github.com/shyiko/jabba/blob/master/command/use.go#L39 This would never work on windows (and it doesn't). I'm not a go dev, but shouldn't you be using something like `os.Setenv` ? ```ps1...