README updates

This commit is contained in:
John
2019-04-11 23:07:22 +08:00
parent f69eb219b5
commit 119a11eb8d
4 changed files with 20 additions and 0 deletions

View File

@ -73,6 +73,7 @@ func main() {
- [johng](https://gitee.com/johng)
- [pibigstar](https://github.com/pibigstar)
- [qq1054000800](https://gitee.com/qq1054000800)
- [qq976739120](https://github.com/qq976739120)
- [wenzi1](https://gitee.com/wenzi1)
- [wxkj001](https://github.com/wxkj001)
- [ymrjqyy](https://gitee.com/ymrjqyy)

View File

@ -93,6 +93,7 @@ func main() {
- [johng](https://gitee.com/johng)
- [pibigstar](https://github.com/pibigstar)
- [qq1054000800](https://gitee.com/qq1054000800)
- [qq976739120](https://github.com/qq976739120)
- [wenzi1](https://gitee.com/wenzi1)
- [wxkj001](https://github.com/wxkj001)
- [ymrjqyy](https://gitee.com/ymrjqyy)

View File

@ -43,6 +43,7 @@
1. 添加Save/Replace/BatchSave/BatchReplace方法对sqlite数据库的支持
1. 添加sqlite数据库的单元测试用例
1. gredis增加cluster支持
1. gset.Add/Remove/Contains方法增加批量操作支持
# DONE
1. gconv完善针对不同类型的判断例如尽量减少sprintf("%v", xxx)来执行string类型的转换

View File

@ -0,0 +1,17 @@
package main
import (
"fmt"
"github.com/gogf/gf/g/os/gtimer"
"time"
)
func main() {
for i := 0; i < 100000; i++ {
gtimer.Add(time.Second, func() {
})
}
fmt.Println("start")
time.Sleep(48*time.Hour)
}