:)
Results
2
issues of
:)
从OSC上面看到,看了下想问下PO主几个问题哈 :smile: - 请问下该repo的项目定位是啥,是类似于twemproxy的中间件还是仅仅作为client使用? - 如果是中间件的话,性能上面肯定是有所要求的哈,有详实的压测数据吗? - 大致翻了下代码,关于redis的序列化方式貌似只支持二进制流哈,有其他的序列化方式?比如说protobuf? - 翻到了一些 System.out.println
``` long sleepTime = waitStrategy.computeSleepTime(attempt); try { blockStrategy.block(sleepTime); } catch (InterruptedException e) { Thread.currentThread().interrupt(); throw new RetryException(attemptNumber, attempt); } ``` as you see in the code above, waitStrategy use blockStrategy#block...