halfrost

Results 169 comments of halfrost

I use the Hugo framework to build this website. Hugo is one of the most popular open-source static site generators, which bases on golang.

You can use ctl tool to generate the book. Ctl tool is in the ctl file folder. You need to build this tool first and use `pdf` command to generate...

> 厉害!提一个小问题:record的length其实可以初始为 `k+1` 对吧,因为只需要保证可以检测到额外一个数值即可吧。感谢! @delongGao 嗯。可以的。

> > @brness > > if _, ok := m[another]; ok { > > return []int{m[another], i} > > } > > 这里为什么不直接使用value,而是用_表示,在后面获取的时候又要使用m[another]? > > 有点不明白这个是什么意思?可以解释一下吗? @kyhong2000-dev 他的意思是,让我直接用 value,不检查 map...

> > @halfrost > > > > @brness > > > > if _, ok := m[another]; ok { > > > > return []int{m[another], i} > > > >...

Regarding my current progress: I am taking the most basic flow.Rule as an example to run through the whole basic wasm extension logic. I initialize an Entry with simply configure...

Update current progress, I encountered 2 problems and blocked the progress: 1. Due to the limitations of tinygo, cgo cannot be perfectly supported prometheus and etcd. This means that I...

@wilsonwu 非常有意愿一起讨论,你可以加入 https://gitter.im/alibaba/Sentinel 一起讨论。

@1083 请问一下,你的熔断策略是,在 70 秒内异常请求数大于阈值触发熔断,还是 70 内慢调用的比例大于阈值触发熔断?是前者还是后者?