-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
50 lines (42 loc) · 1.14 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package main
import (
"github.com/gin-gonic/gin"
"github.com/practice/redis-practice/pkg"
"strconv"
"time"
)
const defaultTTL = time.Second * 10
func main() {
r := gin.New()
// 使用中间件
r.Use(func(c *gin.Context) {
defer func() {
if e := recover(); e != nil {
c.AbortWithStatusJSON(400, gin.H{"message:": e})
}
}()
c.Next()
})
r.GET("/", func(c *gin.Context) {
a := 1
// lock := pkg.NewLocker("tryLock1111")
// 自定义过期时间,可能会发生一个情况,就是TTL设置3妙,但是请求需要5秒的情况,所以需要自动续期的功能。
lock := pkg.NewLockerWithTTL("trylock1111", defaultTTL)
lock.Lock()
defer lock.UnLock()
if c.Query("t") != "" {
// 范例一
// 请求http://127.0.0.1:8080/?t=1 会报panic
//panic("t")
// 范例二
time.Sleep(time.Second * 5)
// 当路由到这里时,需要等待五秒才能再次获得锁
// 如果不设置过期时间,服务当机后,会迟迟无法释放锁,导致之后重启时,也不能正常运行。
}
a++
c.JSON(200, gin.H{"message:": "ok" + strconv.Itoa(a)})
})
defer func() {
r.Run(":8080")
}()
}