<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
cache 是一個帶索引帶超時的快取庫
目的在於優化程式碼結構,提供了若干實踐。 https://github.com/weapons97/cache
example
1.18 已經發布一段實踐了。通過泛型函數。我們可以減少迴圈的使用,優化程式碼結構。下面分享幾個泛型函數和程式碼上的實踐。
// Filter filter one slice func Filter[T any](objs []T, filter func(obj T) bool) []T { res := make([]T, 0, len(objs)) for i := range objs { ok := filter(objs[i]) if ok { res = append(res, objs[i]) } } return res }
// 測試[]int func TestFilter(t *testing.T) { ans := []int{2, 4, 6} a := []int{1, 2, 3, 4, 5, 6} b := Filter(a, func(i int) bool { return i%2 == 0 }) require.Equal(t, ans, b) spew.Dump(b) } // 結果 === RUN TestFilter ([]int) (len=3 cap=6) { (int) 2, (int) 4, (int) 6 } --- PASS: TestFilter (0.00s) PASS // NoSpace is filter func for strings func NoSpace(s string) bool { return strings.TrimSpace(s) != "" } // 測試[]sting func TestFilterNoSpace(t *testing.T) { ans1 := []string{"1", "2", "3"} a := []string{"", "1", "", "2", "", "3", ""} b := Filter(a, NoSpace) require.Equal(t, ans1, b) spew.Dump(b) } // 結果 === RUN TestFilterNoSpace ([]string) (len=3 cap=7) { (string) (len=1) "1", (string) (len=1) "2", (string) (len=1) "3" } --- PASS: TestFilterNoSpace (0.00s) PASS
// Map one slice func Map[T any, K any](objs []T, mapper func(obj T) ([]K, bool)) []K { res := make([]K, 0, len(objs)) for i := range objs { others, ok := mapper(objs[i]) if ok { res = append(res, others...) } } return res } // 測試 []int -> []string func TestMap(t *testing.T) { ans := []string{"2", "4", "6", "end"} a := []int{1, 2, 3, 4, 5, 6} b := Map(a, func(i int) ([]string, bool) { if i == 6 { return []string{fmt.Sprintf(`%v`, i), `end`}, true } if i%2 == 0 { return []string{fmt.Sprintf(`%v`, i)}, true } else { return nil, false } }) require.Equal(t, ans, b) spew.Dump(b) } // 結果 === RUN TestMap ([]string) (len=4 cap=6) { (string) (len=1) "2", (string) (len=1) "4", (string) (len=1) "6", (string) (len=3) "end" } --- PASS: TestMap (0.00s) PASS
// First make return first for slice func First[T any](objs []T) (T, bool) { if len(objs) > 0 { return objs[0], true } return *new(T), false } func TestFirstInt(t *testing.T) { ans1, ans2 := 1, 0 a := []int{1, 2, 3, 4, 5, 6} b, ok := First(a) require.True(t, ok) require.Equal(t, ans1, b) spew.Dump(b) c := []int{} d, ok := First(c) require.False(t, ok) require.Equal(t, ans2, d) spew.Dump(d) } // result === RUN TestFirstInt (int) 1 (int) 0 --- PASS: TestFirstInt (0.00s) PASS func TestFirstString(t *testing.T) { ans1, ans2 := "1", "" a := []string{"1", "2", "3", "4", "5", "6"} b, ok := First(a) require.True(t, ok) require.Equal(t, ans1, b) spew.Dump(b) c := []string{} d, ok := First(c) require.False(t, ok) require.Equal(t, ans2, d) spew.Dump(d) } // result === RUN TestFirstString (string) (len=1) "1" (string) "" --- PASS: TestFirstString (0.00s) PASS
// 用輔助map刪除 if apiRet.TotalCount > 0 { var hc sync.Map for _, h := range apiRet.Hcis { hc.Store(h.HostID, h) hostCpu.Store(h.HostID, h) } hostCpu.Range(func(key, _ interface{}) bool { _, ok := hc.Load(key) if !ok { hostCpu.Delete(key) } return true }) } // 直接設定,過期的key 會刪除 for _, h := range apiRet.Hcis { hostCpu.Set(h.HostID, h) }
func TestNewCache(t *testing.T) { c := NewCache(WithTTL[string, int](time.Second)) b := 1 c.Set(`a`, b) d, ok := c.Get(`a`) require.True(t, ok) require.Equal(t, b, d) time.Sleep(time.Second) d, ok = c.Get(`a`) require.False(t, ok) // 超時返回0值 require.Equal(t, d, 0) }
通過 set 做集合,可以給集合去重。可以給結合相併,想交,等操作。
func TestSetUnion(t *testing.T) { s := NewSet[string]() s.Add(`a`) s.Add(`b`) s2 := NewSet[string]() s2.Add(`b`) s2.Add(`d`) s3 := s.Union(s2) wantS3 := []string{`a`, `b`, `d`} ans := s3.List() sort.Strings(ans) require.Equal(t, wantS3, ans) spew.Dump(s.List(), s2.List(), s3.List()) } func TestSetJoin(t *testing.T) { s := NewSet[string]() s.Add(`a`) s.Add(`b`) s2 := NewSet[string]() s2.Add(`b`) s2.Add(`d`) s3 := s.Join(s2) wantS3 := []string{`b`} ans := s3.List() sort.Strings(ans) require.Equal(t, wantS3, ans) spew.Dump(s.List(), s2.List(), s3.List()) } func TestSetJoinLeft(t *testing.T) { s := NewSet[string]() s.Add(`a`) s.Add(`b`) s2 := NewSet[string]() s2.Add(`b`) s2.Add(`d`) s3 := s.JoinLeft(s2) wantS3 := []string{`a`, `b`} ans := s3.List() sort.Strings(ans) require.Equal(t, wantS3, ans) spew.Dump(s.List(), s2.List(), s3.List()) } func TestSetJoinRight(t *testing.T) { s := NewSet[string]() s.Add(`a`) s.Add(`b`) s2 := NewSet[string]() s2.Add(`b`) s2.Add(`d`) s3 := s.JoinRight(s2) wantS3 := []string{`b`, `d`} ans := s3.List() sort.Strings(ans) require.Equal(t, wantS3, ans) spew.Dump(s.List(), s2.List(), s3.List()) } func TestSetSub(t *testing.T) { s := NewSet[string]() s.Add(`a`) s.Add(`b`) s2 := NewSet[string]() s2.Add(`b`) s2.Add(`d`) s3 := s.Sub(s2) wantS3 := []string{`a`} ans := s3.List() sort.Strings(ans) require.Equal(t, wantS3, ans) spew.Dump(s.List(), s2.List(), s3.List()) }
通過set 去重
// ShowImageInManifest 抓取 manifest 中imgs func ShowImageInManifest(manifest string) (imgs []string) { rx := regImages.FindAllStringSubmatch(manifest, -1) set := cache.NewSet[string]() for i := range rx { for j := range rx[i] { if strings.HasPrefix(rx[i][j], `image:`) { continue } tx0 := strings.TrimSpace(rx[i][j]) tx1 := strings.Trim(tx0, `'`) tx2 := strings.Trim(tx1, `"`) set.Add(tx2) } } imgs = set.List() return imgs }
某些情況下,我們可能根據cache 的某個元素對cache進行遍歷,這時候如果給cache 加上索引結構,可以對遍歷加速。
type Person struct { id string lastName string fullName string country string } const ( IndexByLastName = `IndexByLastName` IndexByCountry = `IndexByCountry` ) func (p *Person) Indexs() map[string]IndexFunc { return map[string]IndexFunc{ IndexByLastName: func(indexed Indexed) (key []string) { ci := indexed.(*Person) return []string{ci.lastName} }, IndexByCountry: func(indexed Indexed) (key []string) { ci := indexed.(*Person) return []string{ci.country} }, } } func (p *Person) ID() (mainKey string) { return p.id } func (p *Person) Set(v interface{}) (Indexed, bool) { rx, ok := v.(*Person) if !ok { return nil, false } return rx, true } func (p *Person) Get(v Indexed) (interface{}, bool) { rx, ok := v.(*Person) if !ok { return nil, false } return rx, true }
// 測試資料 var ( p1 = &Person{ id: `1`, lastName: "魏", fullName: "魏鵬", country: `China`, } p2 = &Person{ id: `2`, lastName: "魏", fullName: "魏無忌", country: `America`, } p3 = &Person{ id: `3`, lastName: "李", fullName: "李雲", country: `China`, } p4 = &Person{ id: `4`, lastName: "黃", fullName: "黃帥來", country: `China`, } p5 = &Person{ id: `5`, lastName: "Cook", fullName: "TimCook", country: `America`, } p6 = &Person{ id: `6`, lastName: "Jobs", fullName: "SteveJobs", country: `America`, } p7 = &Person{ id: `7`, lastName: "Musk", fullName: "Elon Musk", country: `America`, } )
func TestIndexByCountry(t *testing.T) { index := NewIndexer(&Person{}) // set index.Set(p1) index.Set(p2) index.Set(p3) index.Set(p4) index.Set(p5) index.Set(p6) index.Set(p7) // search rs := index.Search(IndexByCountry, `China`) require.False(t, rs.Failed()) rx := rs.InvokeAll() require.Len(t, rx, 3) spew.Dump(rx) one := rs.InvokeOne().(*Person) require.Equal(t, one.country, `China`) spew.Dump(one) } // result === RUN TestIndexByCountry ([]interface {}) (len=3 cap=3) { (*cache.Person)(0x14139c0)({ id: (string) (len=1) "3", lastName: (string) (len=3) "李", fullName: (string) (len=6) "李雲", country: (string) (len=5) "China" }), (*cache.Person)(0x1413a00)({ id: (string) (len=1) "4", lastName: (string) (len=3) "黃", fullName: (string) (len=9) "黃帥來", country: (string) (len=5) "China" }), (*cache.Person)(0x1413940)({ id: (string) (len=1) "1", lastName: (string) (len=3) "魏", fullName: (string) (len=6) "魏鵬", country: (string) (len=5) "China" }) } (*cache.Person)(0x14139c0)({ id: (string) (len=1) "3", lastName: (string) (len=3) "李", fullName: (string) (len=6) "李雲", country: (string) (len=5) "China" }) --- PASS: TestIndexByCountry (0.00s) PASS
以上就是golang cache帶索引超時快取庫實戰範例的詳細內容,更多關於golang cache索引超時快取庫的資料請關注it145.com其它相關文章!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45