Kai

Results 117 issues of Kai

Exactly, i love apex/log, i use it in many project. But recently in a **high load** project, i report an odd bug `PANIC: reflect: call of reflect.Value.MapKeys on ptr Value`,...

Just like : ```golang // init log lib setting logFormatter := new(log.TextFormatter) logFormatter.TimestampFormat = "2006-01-02 15:04:05" logFormatter.FullTimestamp = true log.SetFormatter(logFormatter) ```

感谢开源出这么好的文章,这一定是我在 Github 发现的最有价值的仓库之一。 在协程调度一文 **3.1 队列轮转** 中,有提到如下观点: > 上图中可见每个P维护着一个包含G的队列,不考虑G进入系统调用或IO操作的情况下,P周期性的将G调度到M中执行,执行一小段时间,将上下文保存下来,然后将G放到队列尾部,然后从队列中重新取出一个G进行调度。 文中的观点是 P 存在有类似时间片的调度机制,不管 G 是否执行完毕,会把它重新放入队列,再取出新的 G 执行。 但我在[另外一篇文章](https://rakyll.org/scheduler/)中又读到 > Once a runnable G is found, it is executed until it is...

bug
help wanted

How can i add tags or categories for my post ?

项目-->预览的时候,不能预览,说太大了

Thanks for your great project . But ... why not set peer certs for etcd cluster ?

As wikipedia say: > The general format of the field is: X-Forwarded-For: client, proxy1, proxy2[3] where the value is a **comma+space** separated list of IP addresses.

I generated my self-signed CA by `cfssl gencert -initca`, but the default term of validity is 5 years. How can I modify it to 10 years ? I don’t want...

## 什么是 K8s event ? ``` Event is a report of an event somewhere in the cluster. It generally denotes some state change in the system. Events have a limited...

K8s