-
Notifications
You must be signed in to change notification settings - Fork 0
/
example_test.go
460 lines (397 loc) · 10.9 KB
/
example_test.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
package example_test
import (
"fmt"
"math/rand"
"sync"
"testing"
"github.com/jinzhu/gorm"
_ "github.com/jinzhu/gorm/dialects/mysql"
"github.com/linthan/gcache"
"github.com/linthan/gcache/option"
)
var (
db *gorm.DB
cachePlugin gcache.Plugin
)
type TestUser struct {
gorm.Model
UserName string `gorm:"size:32"`
Password string `gorm:"size:32"`
Age int
Status int
}
type TestEmail struct {
gorm.Model
TypeID int
Subscribed bool
TestUserID int
}
func init() {
var e error
addr := "用户名:密码@tcp(ip地址:端口)/数据库?charset=utf8&parseTime=True&loc=Local"
db, e = gorm.Open("mysql", addr)
if e != nil {
panic(e)
}
db.AutoMigrate(&TestUser{})
db.AutoMigrate(&TestEmail{})
opt := option.DefaultOption{}
opt.Expires = 300 //缓存时间,默认60秒。范围 30-900
opt.Level = option.LevelSearch //缓存级别,默认LevelSearch。LevelDisable:关闭缓存,LevelModel:模型缓存, LevelSearch:查询缓存
opt.AsyncWrite = false //异步缓存更新, 默认false。 insert update delete 成功后是否异步更新缓存
opt.PenetrationSafe = false //开启防穿透, 默认false。
//缓存中间件 注入到Gorm
cachePlugin = gcache.AttachDB(db, &opt, nil)
InitData()
//开启Debug,查看日志
db.LogMode(true)
cachePlugin.Debug()
}
func InitData() {
cachePlugin.FlushDB()
db.Exec("truncate test_users")
db.Exec("truncate test_emails")
for index := 1; index < 21; index++ {
user := &TestUser{}
user.UserName = fmt.Sprintf("%s_%d", "name", index)
user.Password = fmt.Sprintf("%s_%d", "password", index)
user.Age = 20 + index
user.Status = rand.Intn(3)
db.Save(user)
email := &TestEmail{}
email.TypeID = index
email.TestUserID = index
db.Save(email)
}
}
func Two(fun func()) {
fmt.Println("one:")
fun()
fmt.Print("\n\n\n\n\n")
fmt.Println("two:")
fun()
}
/*
简单主键模型查询
同条件查询,第一次未命中,第二次命中
ps: Two(func()) : 执行2次
*/
func TestQuerySimple(t *testing.T) {
Two(func() {
var tcs []TestUser
db.Find(&tcs, []int{1, 2})
fmt.Println(tcs)
db.Where([]int{1, 2}, &tcs)
fmt.Println(tcs)
var tc TestUser
db.First(&tc, 1)
fmt.Println(tc)
})
}
/*
模型关联
*/
func TestQueryRelated(t *testing.T) {
Two(func() {
var tc TestUser
var ems []TestEmail
db.First(&tc, 1).Related(&ems)
fmt.Println(tc, ems)
})
}
/*
条件查询
1. where条件使用?, 查询条件和查询参数必须严格区分。
*/
func TestQueryWhere(t *testing.T) {
Two(func() {
var tc TestUser
var tcs []TestUser
var count int
//错误的方式 db.Where("user_name = name_1").First(&tc)
db.Where("user_name = ?", "name_1").First(&tc)
fmt.Println("where 1", tc)
tc = TestUser{}
db.Where("user_name LIKE ?", "%_2%").Order("age desc").Find(&tcs)
fmt.Println("where 2", tcs)
tcs = []TestUser{}
db.Where("password = ? and age = ?", "password_2", 22).First(&tc)
fmt.Println("where 3", tc)
tc = TestUser{}
db.Where(&TestUser{UserName: "name_14", Age: 34}).First(&tc)
fmt.Println("where 4", tc)
tc = TestUser{}
db.Where("user_name in (?)", []string{"name_17", "name_18", "name_19", "name_20"}).Limit(3).Find(&tcs).Count(&count)
fmt.Println("where 5", tcs, count)
tcs = []TestUser{}
db.Where(map[string]interface{}{"user_name": "name_20", "password": "password_20"}).Find(&tcs).Count(&count)
fmt.Println("where 6", tcs, count)
tcs = []TestUser{}
db.Find(&tcs, "user_name = ?", "name_11")
fmt.Println("where 7", tcs)
tcs = []TestUser{}
db.Find(&tcs, &TestUser{UserName: "name_11"})
fmt.Println("where 8", tcs)
tcs = []TestUser{}
db.First(&tc, "user_name =? and age = ?", "name_7", 27)
fmt.Println("where 9", tc)
tc = TestUser{}
})
}
func TestQueryNot(t *testing.T) {
Two(func() {
var tc TestUser
var tcs []TestUser
var count int
db.Not("user_name", "not_1_yangshu").Order("id desc").Limit(5).Find(&tcs).Count(&count)
db.Not("user_name = ?", "not_2_yangshu").First(&tc)
fmt.Println(tcs, count)
fmt.Println(tc)
})
}
func TestQueryOr(t *testing.T) {
Two(func() {
var tcs []TestUser
var count int
db.Where("age = ?", 21).Or("age = ?", 30).Find(&tcs).Count(&count)
fmt.Println(tcs, count)
})
}
func TestQueryOrder(t *testing.T) {
Two(func() {
var tcs []TestUser
var count int
var ages []int64
db.Where("user_name = ?", "Yangshu").Order("id desc").Offset(0).Limit(10).Find(&tcs).Count(&count)
fmt.Println(tcs, count, ages)
})
}
/*
join查询缓存
cachePlugin.CreateRelative(model ...interface{}) : 传入要join的模型,辅助缓存做关联。
*/
func TestQueryJoin(t *testing.T) {
Two(func() {
var tcs []TestUser
var count int
cachePlugin.CreateRelative(&TestEmail{}).Joins("left join test_emails on test_emails.test_user_id = test_users.id").Where("type_id > ?", 18).Find(&tcs).Count(&count)
fmt.Println(tcs, count)
})
}
/*
子查询缓存
cachePlugin.CreateRelative(model ...interface{}) : 传入要子查询的模型,辅助缓存做关联。
*/
func TestSelect(t *testing.T) {
Two(func() {
var count int
var tcs []TestUser
cachePlugin.CreateRelative(&TestEmail{}).Where("id in(select test_user_id from test_emails where type_id > ?)", 18).Find(&tcs).Count(&count)
fmt.Println(tcs, count)
})
}
/*
单独使用模型缓存配置
修改 opt.Level = gcache.LevelDisable 查看输出
*/
func TestModelOpt(t *testing.T) {
Two(func() {
var te TestEmail
db.Where("type_id >= ?", 18).First(&te)
fmt.Println(te)
})
}
//Cache 重写模型单独配置项
func (te *TestEmail) Cache(opt *option.ModelOption) {
opt.Expires = 600
opt.Level = option.LevelSearch
opt.AsyncWrite = false
opt.PenetrationSafe = false
}
/*
update后缓 缓存失效
*/
func TestUpdateInvalid1(t *testing.T) {
var tcs []TestUser
Two(func() {
db.Where("age = ?", 39).Or("age = ?", 40).Find(&tcs)
fmt.Println("Query 1", tcs)
})
for index := 0; index < len(tcs); index++ {
//触发缓存失效
//ps : 只失效 age 字段影响的查询缓存
db.Model(&tcs[index]).Update("age", tcs[index].Age+1)
}
tcs = []TestUser{}
Two(func() {
var count int
db.Where("age = ?", 40).Or("age = ?", 41).Find(&tcs).Count(&count)
fmt.Println("Query 2", tcs, count)
})
for index := 0; index < len(tcs); index++ {
//触发缓存失效
db.Model(&tcs[index]).Updates(map[string]interface{}{"age": tcs[index].Age - 1, "password": "1111"})
}
}
/*
TestUpdateInvalid2 join失效
*/
func TestUpdateInvalid2(t *testing.T) {
//join查询 填充缓存
Two(func() {
var tcs []TestUser
var count int
cachePlugin.CreateRelative(&TestEmail{}).Joins("left join test_emails on test_emails.test_user_id = test_users.id").Where("type_id >= ?", 18).Find(&tcs).Count(&count)
fmt.Println(tcs, count)
})
//update失效
var te TestEmail
//join查询使用了 test_emails.type_id 字段,更新 test_emails.type_id 会触发join的失效
db.Where("type_id >= ?", 18).First(&te).Update("type_id", te.TypeID+30)
}
/*
TestUpdateInvalid3
非主键update条件,删除相关缓存模型
*/
func TestUpdateInvalid3(t *testing.T) {
//主键查询 填充缓存
var tcs []TestUser
db.Find(&tcs, []int{1, 2, 3, 4, 5, 6, 7, 8, 9})
/*
触发缓存失效,内部执行顺序。
1. 先执行 select id from test_users where (update条件) => idList
2. 执行 sql update
3. 删除缓存 redis delete idList
*/
db.Model(&TestUser{}).Where("age < ?", 30).Update("age", 100)
/*
如果条件数据较多,建议外部循环update
for {
db.Model(&TestUser{}).Where("age < ?", 30).Limit(20).Update("age", 100)
}
*/
}
/*
TestDeleteInvalid
删除数据,使缓存失效
*/
func TestDeleteInvalid(t *testing.T) {
//join查询 填充缓存
var tcs []TestUser
var count int
cachePlugin.CreateRelative(&TestEmail{}).Joins("left join test_emails on test_emails.test_user_id = test_users.id").Where("type_id >= ?", 18).Find(&tcs).Count(&count)
//普通查询 填充缓存
var te TestEmail
db.Where("type_id >= ?", 18).First(&te)
//触发缓存失效
db.Delete(&te)
}
/*
TestCreateInvalid
新增数据,使缓存失效
*/
func TestCreateInvalid(t *testing.T) {
//join查询 填充缓存
var tcs []TestUser
var count int
cachePlugin.CreateRelative(&TestEmail{}).Joins("left join test_emails on test_emails.test_user_id = test_users.id").Where("type_id >= ?", 18).Find(&tcs).Count(&count)
//普通查询 填充缓存
var te TestEmail
db.Where("type_id >= ?", 18).First(&te)
//新增数据 触发缓存失效
email := &TestEmail{}
email.TypeID = 1101
email.TestUserID = 1234
db.Save(email)
}
/*
Tag测试
cachePlugin.CreateTag(...inteface{}) : 传入标签数据
*/
func TestTag(t *testing.T) {
var tcs1 []TestUser
var count1 int
//填充tag `1` 的缓存
cachePlugin.SetTag(db.Where("status = ?", 1), 1, 345).Find(&tcs1).Count(&count1)
fmt.Println("tcs1", tcs1, count1)
var tcs2 []TestUser
var count2 int
//填充tag `2` 的缓存
cachePlugin.CreateTag(2).Where("status = ?", 2).Find(&tcs2).Count(&count2)
fmt.Println("tcs2", tcs2, count2)
if len(tcs2) == 0 {
return
}
//update 使tag`2`失效
fmt.Println("update", cachePlugin.CreateTag(2).Model(&tcs2[0]).Update("status", 6).RowsAffected)
//delete 使tag`2`失效
fmt.Println("delete", cachePlugin.CreateTag(2).Delete(&tcs2[0]).RowsAffected)
//save 使tag`2`失效
tcs2[0].ID = 0
fmt.Println("save", cachePlugin.CreateTag(2).Save(&tcs2[0]).RowsAffected)
}
/*
防击穿测试
*/
func TestSingleFlight(t *testing.T) {
wait := new(sync.WaitGroup)
for index := 0; index < 200; index++ {
go func() {
wait.Add(1)
var tcs []TestUser
db.Where([]int{1, 2}).Find(&tcs)
fmt.Println(tcs)
var count int
tcs = []TestUser{}
cachePlugin.CreateRelative(&TestEmail{}).Joins("left join test_emails on test_emails.test_user_id = test_users.id").Where("type_id >= ?", 18).Find(&tcs).Count(&count)
fmt.Println(tcs, count)
wait.Done()
}()
}
wait.Wait()
}
/*
防穿透测试, 可注释和解注观察效果。
开启防穿透:查询数据库不存在的数据也会录入缓存
*/
func TestPenetration(t *testing.T) {
Two(func() {
var tcs []TestUser
var count int
db.Find(&tcs, []int{100, 200})
fmt.Println(tcs)
tcs = []TestUser{}
db.Where("user_name = ?", "不存在").Find(&tcs).Count(&count)
fmt.Println(tcs, count)
})
}
//Cache 重写模型单独配置项
func (te *TestUser) Cache(opt *option.ModelOption) {
//解注开启防穿透
//opt.PenetrationSafe = true
}
/*
手动删除
*/
func TestPlugin(t *testing.T) {
//通过主键 删除模型缓存
cachePlugin.DeleteModel(&TestEmail{}, 1)
//删除模型的所有查询缓存
cachePlugin.DeleteSearch(&TestEmail{})
//删库
cachePlugin.FlushDB()
}
/*
增删查改 跳过缓存处理
*/
func TestSkipCache(t *testing.T) {
var tc TestUser
var ems []TestEmail
cachePlugin.SkipCache().First(&tc, 1).Related(&ems)
cachePlugin.SkipCache().Model(&tc).Update("age", tc.Age+1)
cachePlugin.SkipCache().Delete(&tc)
email := &TestEmail{}
email.TypeID = 2101
email.TestUserID = 2234
cachePlugin.SkipCache().Save(email)
}