chen-zhuohan

Results 9 issues of chen-zhuohan

I add gorm as new backend. Hope for your review. I will add docs later. I will add the same code to V2 after this PR approved.

To improve the clarity of args, do we consider using a struct as task args and result, making the task calling like async http call? The key code maybe like...

In the process of task retry, various errors can be encountered, such as network errors, database errors, bugs, etc. I think these errors should not be hidden and ignored. Has...

Although hash algorithm is not the Bottleneck of bigcache, the [smhasher](https://github.com/rurban/smhasher)(the project of hash function quality and speed tests) show that FVNa has poor quality while other hash func has...

enhancement
question
discussion

there are twice problems, both related to crontab task 1. Tasks that should have been run hourly will always run a few minutes before the hour. 2. Tasks that should...

the code in examples/five_mem_node/main.rs:281 ```rust let mut handle_committed_entries = |rn: &mut RawNode, committed_entries: Vec| { for entry in committed_entries { if entry.data.is_empty() { // From new elected leaders. // -----------------------...

### Question. The newest version used generics it's very attractive, I want to use it. but I don't know what difference between master and v0.1.1. Hope for the new version...

kind/question

在20.10这一章中,有这么一段话 > Cody、Robert和我在实现这个项目的过程中学到的一件事情是,**任何一种编程语言就是编程语言**,你可以用它来实现内核,实现应用程序,它并不会阻止你做什么事情。 这里加粗的部分不太理解是什么意思。

In both the node.Propose and the raft example, an unreliable way to submit requests is used. In etcd raft, Propose will return when msg append into msgsAfterAppend or msgs.(May be...