Xinhao Xu
Results
2
issues of
Xinhao Xu
https://github.com/alibaba/sentinel-golang/blob/c362aaeafd1e500c9812d4961bcea81b25008b45/core/stat/base/metric_bucket.go#L68 another question: the minrt updating function is not thread safe. ```go func (mb *MetricBucket) AddRt(rt int64) { mb.addCount(base.MetricEventRt, rt) if rt < atomic.LoadInt64(&mb.minRt) { // here is not thread...
kind/enhancement
good first issue
area/metrics
The struct used is the example from [Cap'n official site](https://capnproto.org/language.html) I wrote a same struct in protobuf. my test code is here: For protobuf and Cap'n, I do marshal and...
question