Skip to content

Commit

Permalink
更新 .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
zijieye committed Jan 31, 2022
1 parent 90b345b commit ffc3bc7
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 12 deletions.
19 changes: 10 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
# Binaries for programs and plugins
# OS
*.exe
*.exe~
*.dll
*.so
*.dylib
.DS_Store

# Test binary, built with `go test -c`
*.test

# Output of the go coverage tool, specifically when used with LiteIDE
*.out

# ide
# IDE
.idea/
.vscode/
*.iml
.vscode/*

# Program
target/
*.test
*.out
*.log
6 changes: 6 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
## ✒ 历史版本的特性介绍 (Features in old versions)

### v0.3.2

> 此版本发布于 2022-01-31
* 祝大家除夕夜快乐,新年行大运 :)

### v0.3.1-alpha

> 此版本发布于 2022-01-06
Expand Down
2 changes: 1 addition & 1 deletion README.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

**cachego** is a high-performance and memory-based cache for [GoLang](https://golang.org) applications.

> It has been used by many services in production, and even 8w/s qps is ok for it, so just use it if you want!
> It has been used by many services in production, and even 17w/s qps is ok for it, so just use it if you want!
> I am developing v0.3.x which will be better at APIs and features, so issue me if you have something fun!!!
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

**cachego** 是一个拥有高性能分段锁机制的轻量级内存缓存,拥有懒清理和哨兵清理两种清理机制,可以应用于所有的 [GoLang](https://golang.org) 应用程序中。

> 目前已经在多个线上服务中运行良好,也抵御过最高 8w/s qps 的冲击,可以稳定使用!
> 目前已经在多个线上服务中运行良好,也抵御过最高 17w/s qps 的冲击,可以稳定使用!
> 我正在开发 v0.3.x 版本,这将在 API 以及功能上达到全新的使用体验,敬请期待,也期待大家的建议!!!
Expand Down
2 changes: 1 addition & 1 deletion doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -198,4 +198,4 @@ Package cachego provides an easy way to use foundation for your caching operatio
package cachego // import "github.com/FishGoddess/cachego"

// Version is the version string representation of cachego.
const Version = "v0.3.1-alpha"
const Version = "v0.3.2"

0 comments on commit ffc3bc7

Please sign in to comment.