Zenghui Bao

Results 3 issues of Zenghui Bao

``` func (rl *RateLimiter) Limit() bool { .... if max := atomic.LoadUint64(&rl.max); current > max { atomic.AddUint64(&rl.allowance, max-current) .... } .... // 没有超过限额 atomic.AddUint64(&rl.allowance, -rl.unit) return false } ``` 如上的代码中`atomic.AddUint64`中传入的数必须是uint64,在注释上说明了减法用类似`AddUint64(&x,...

I read this [article](https://github.com/open-webrtc-toolkit/owt-sdk-quic/blob/main/web_transport/docs/build_instructions.md), follow the article step by step, check the latest main branch, but compile failed. ``` ninja -C out/release owt_web_transport owt_web_transport_tests ninja: Entering directory `out/release' [3414/3759] CXX...

想用ElasticSearch实现数据分析、统计的功能, 想在本地的macbook Pro测试下,支持吗?