You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
94 lines
1.8 KiB
94 lines
1.8 KiB
// Copyright © 2024 OpenIM. All rights reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package localcache
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"math/rand"
|
|
"sync"
|
|
"sync/atomic"
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
func TestName(t *testing.T) {
|
|
c := New[string](WithExpirationEvict())
|
|
//c := New[string]()
|
|
ctx := context.Background()
|
|
|
|
const (
|
|
num = 10000
|
|
tNum = 10000
|
|
kNum = 100000
|
|
pNum = 100
|
|
)
|
|
|
|
getKey := func(v uint64) string {
|
|
return fmt.Sprintf("key_%d", v%kNum)
|
|
}
|
|
|
|
start := time.Now()
|
|
t.Log("start", start)
|
|
|
|
var (
|
|
get atomic.Int64
|
|
del atomic.Int64
|
|
)
|
|
|
|
incrGet := func() {
|
|
if v := get.Add(1); v%pNum == 0 {
|
|
//t.Log("#get count", v/pNum)
|
|
}
|
|
}
|
|
incrDel := func() {
|
|
if v := del.Add(1); v%pNum == 0 {
|
|
//t.Log("@del count", v/pNum)
|
|
}
|
|
}
|
|
|
|
var wg sync.WaitGroup
|
|
|
|
for i := 0; i < tNum; i++ {
|
|
wg.Add(2)
|
|
go func() {
|
|
defer wg.Done()
|
|
for i := 0; i < num; i++ {
|
|
c.Get(ctx, getKey(rand.Uint64()), func(ctx context.Context) (string, error) {
|
|
return fmt.Sprintf("index_%d", i), nil
|
|
})
|
|
incrGet()
|
|
}
|
|
}()
|
|
|
|
go func() {
|
|
defer wg.Done()
|
|
time.Sleep(time.Second / 10)
|
|
for i := 0; i < num; i++ {
|
|
c.Del(ctx, getKey(rand.Uint64()))
|
|
incrDel()
|
|
}
|
|
}()
|
|
}
|
|
|
|
wg.Wait()
|
|
end := time.Now()
|
|
t.Log("end", end)
|
|
t.Log("time", end.Sub(start))
|
|
t.Log("get", get.Load())
|
|
t.Log("del", del.Load())
|
|
// 137.35s
|
|
}
|