Files
gf/os/gcache/gcache_z_example_cache_test.go

502 lines
11 KiB
Go
Raw Normal View History

2021-11-03 10:16:41 +08:00
package gcache_test
import (
"fmt"
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/os/gcache"
"time"
)
func ExampleNew() {
2021-11-04 20:55:01 +08:00
// Create a cache object,
// Of course, you can also easily use the gcache package method directly
2021-11-03 10:16:41 +08:00
c := gcache.New()
2021-11-04 20:55:01 +08:00
// Set cache without expiration
2021-11-03 10:16:41 +08:00
c.Set(ctx, "k1", "v1", 0)
2021-11-04 20:55:01 +08:00
// Get cache
2021-11-03 10:16:41 +08:00
v, _ := c.Get(ctx, "k1")
fmt.Println(v)
2021-11-04 20:55:01 +08:00
// Get cache size
2021-11-03 10:16:41 +08:00
n, _ := c.Size(ctx)
fmt.Println(n)
2021-11-04 20:55:01 +08:00
// Does the specified key name exist in the cache
2021-11-03 10:16:41 +08:00
b, _ := c.Contains(ctx, "k1")
fmt.Println(b)
2021-11-04 20:55:01 +08:00
// Delete and return the deleted key value
2021-11-03 10:16:41 +08:00
fmt.Println(c.Remove(ctx, "k1"))
// Close the cache object and let the GC reclaim resources
2021-11-04 20:55:01 +08:00
2021-11-03 10:16:41 +08:00
c.Close(ctx)
// Output:
// v1
// 1
// true
// v1 <nil>
}
func ExampleCache_Set() {
2021-11-04 20:55:01 +08:00
// Create a cache object,
// Of course, you can also easily use the gcache package method directly
2021-11-03 10:16:41 +08:00
c := gcache.New()
2021-11-04 20:55:01 +08:00
// Set cache without expiration
2021-11-03 10:16:41 +08:00
c.Set(ctx, "k1", g.Slice{1, 2, 3, 4, 5, 6, 7, 8, 9}, 0)
2021-11-04 20:55:01 +08:00
// Get cache
2021-11-03 10:16:41 +08:00
fmt.Println(c.Get(ctx, "k1"))
// Output:
// [1,2,3,4,5,6,7,8,9] <nil>
}
func ExampleCache_SetAdapters() {
2021-11-04 20:55:01 +08:00
// Create a cache object,
// Of course, you can also easily use the gcache package method directly
2021-11-03 10:16:41 +08:00
c := gcache.New()
2021-11-04 20:55:01 +08:00
// SetAdapter changes the adapter for this cache. Be very note that, this setting function is not concurrent-safe,
// which means you should not call this setting function concurrently in multiple goroutines.
adapter := gcache.New()
2021-11-03 10:16:41 +08:00
c.SetAdapter(adapter)
2021-11-04 20:55:01 +08:00
// Set cache
2021-11-03 10:16:41 +08:00
c.Set(ctx, "k1", g.Slice{1, 2, 3, 4, 5, 6, 7, 8, 9}, 0)
// Reverse makes array with elements in reverse order.
fmt.Println(c.Get(ctx, "k1"))
2021-11-04 20:55:01 +08:00
// Output:
2021-11-03 10:16:41 +08:00
// [1,2,3,4,5,6,7,8,9] <nil>
}
func ExampleCache_SetIfNotExist() {
2021-11-04 20:55:01 +08:00
// Create a cache object,
// Of course, you can also easily use the gcache package method directly
2021-11-03 10:16:41 +08:00
c := gcache.New()
2021-11-04 20:55:01 +08:00
// Write when the key name does not exist, and set the expiration time to 1000 milliseconds
2021-11-03 10:16:41 +08:00
k1, err := c.SetIfNotExist(ctx, "k1", "v1", 1000*time.Millisecond)
fmt.Println(k1, err)
2021-11-04 20:55:01 +08:00
// Returns false when the key name already exists
2021-11-03 10:16:41 +08:00
k2, err := c.SetIfNotExist(ctx, "k1", "v2", 1000*time.Millisecond)
fmt.Println(k2, err)
2021-11-04 20:55:01 +08:00
// Print the current list of key values
2021-11-03 10:16:41 +08:00
keys1, _ := c.Keys(ctx)
fmt.Println(keys1)
2021-11-04 20:55:01 +08:00
// It does not expire if `duration` == 0. It deletes the `key` if `duration` < 0 or given `value` is nil.
2021-11-03 10:16:41 +08:00
c.SetIfNotExist(ctx, "k1", 0, -10000)
// Wait 1 second for K1: V1 to expire automatically
2021-11-04 20:55:01 +08:00
time.Sleep(1200 * time.Millisecond)
2021-11-03 10:16:41 +08:00
// Print the current key value pair again and find that K1: V1 has expired
keys2, _ := c.Keys(ctx)
fmt.Println(keys2)
// Output:
// true <nil>
// false <nil>
// [k1]
// [<nil>]
}
2021-11-03 23:44:16 +08:00
func ExampleCache_SetMap() {
2021-11-03 10:16:41 +08:00
2021-11-04 20:55:01 +08:00
// Create a cache object,
// Of course, you can also easily use the gcache package method directly
2021-11-03 10:16:41 +08:00
c := gcache.New()
2021-11-04 20:55:01 +08:00
// map[interface{}]interface{}
2021-11-03 10:16:41 +08:00
data := g.MapAnyAny{
"k1": "v1",
"k2": "v2",
"k3": "v3",
}
2021-11-04 20:55:01 +08:00
// Sets batch sets cache with key-value pairs by `data`, which is expired after `duration`.
// It does not expire if `duration` == 0. It deletes the keys of `data` if `duration` < 0 or given `value` is nil.
2021-11-03 10:16:41 +08:00
c.SetMap(ctx, data, 1000*time.Millisecond)
2021-11-04 20:55:01 +08:00
// Gets the specified key value
2021-11-03 10:16:41 +08:00
v1, _ := c.Get(ctx, "k1")
2021-11-03 23:44:16 +08:00
v2, _ := c.Get(ctx, "k2")
v3, _ := c.Get(ctx, "k3")
2021-11-03 10:16:41 +08:00
2021-11-03 23:50:57 +08:00
fmt.Println(v1, v2, v3)
2021-11-03 10:16:41 +08:00
// Output:
2021-11-03 23:44:16 +08:00
// v1 v2 v3
2021-11-03 10:16:41 +08:00
}
func ExampleCache_Size() {
2021-11-04 20:55:01 +08:00
// Create a cache object,
// Of course, you can also easily use the gcache package method directly
2021-11-03 10:16:41 +08:00
c := gcache.New()
// Add 10 elements without expiration
for i := 0; i < 10; i++ {
2021-11-03 15:23:51 +08:00
c.Set(ctx, i, i, 0)
2021-11-03 10:16:41 +08:00
}
2021-11-04 20:55:01 +08:00
// Size returns the number of items in the cache.
2021-11-03 10:16:41 +08:00
n, _ := c.Size(ctx)
fmt.Println(n)
// Output:
// 10
}
2021-11-03 15:23:51 +08:00
func ExampleCache_Update() {
2021-11-03 10:16:41 +08:00
2021-11-04 20:55:01 +08:00
// Create a cache object,
// Of course, you can also easily use the gcache package method directly
2021-11-03 10:16:41 +08:00
c := gcache.New()
2021-11-04 20:55:01 +08:00
// Sets batch sets cache with key-value pairs by `data`, which is expired after `duration`.
// It does not expire if `duration` == 0. It deletes the keys of `data` if `duration` < 0 or given `value` is nil.
2021-11-03 15:23:51 +08:00
c.SetMap(ctx, g.MapAnyAny{"k1": "v1", "k2": "v2", "k3": "v3"}, 0)
2021-11-03 10:16:41 +08:00
2021-11-04 20:55:01 +08:00
// Print the current key value pair
2021-11-03 23:50:57 +08:00
k1, _ := c.Get(ctx, "k1")
2021-11-03 23:44:16 +08:00
fmt.Println(k1)
2021-11-03 23:50:57 +08:00
k2, _ := c.Get(ctx, "k2")
2021-11-03 23:44:16 +08:00
fmt.Println(k2)
2021-11-03 23:50:57 +08:00
k3, _ := c.Get(ctx, "k3")
2021-11-03 23:44:16 +08:00
fmt.Println(k3)
2021-11-04 20:55:01 +08:00
// Update updates the value of `key` without changing its expiration and returns the old value.
2021-11-03 15:23:51 +08:00
re, exist, _ := c.Update(ctx, "k1", "v11")
fmt.Println(re, exist)
2021-11-03 10:16:41 +08:00
2021-11-04 20:55:01 +08:00
// The returned value `exist` is false if the `key` does not exist in the cache.
// It does nothing if `key` does not exist in the cache.
2021-11-03 15:23:51 +08:00
re1, exist1, _ := c.Update(ctx, "k4", "v44")
fmt.Println(re1, exist1)
2021-11-03 10:16:41 +08:00
2021-11-03 23:50:57 +08:00
kup1, _ := c.Get(ctx, "k1")
2021-11-03 23:44:16 +08:00
fmt.Println(kup1)
2021-11-03 23:50:57 +08:00
kup2, _ := c.Get(ctx, "k2")
2021-11-03 23:44:16 +08:00
fmt.Println(kup2)
2021-11-03 23:50:57 +08:00
kup3, _ := c.Get(ctx, "k3")
2021-11-03 23:44:16 +08:00
fmt.Println(kup3)
2021-11-04 20:55:01 +08:00
2021-11-03 10:16:41 +08:00
// Output:
2021-11-03 23:44:16 +08:00
// v1
// v2
// v3
2021-11-03 10:16:41 +08:00
// v1 true
// false
2021-11-03 23:44:16 +08:00
// v11
// v2
// v3
2021-11-03 10:16:41 +08:00
}
2021-11-03 15:23:51 +08:00
func ExampleCache_UpdateExpire() {
2021-11-03 10:16:41 +08:00
2021-11-04 20:55:01 +08:00
// Create a cache object,
// Of course, you can also easily use the gcache package method directly
2021-11-03 10:16:41 +08:00
c := gcache.New()
2021-11-03 15:23:51 +08:00
c.Set(ctx, "k1", "v1", 1000*time.Millisecond)
expire, _ := c.GetExpire(ctx, "k1")
fmt.Println(expire)
2021-11-03 10:16:41 +08:00
2021-11-04 20:55:01 +08:00
// UpdateExpire updates the expiration of `key` and returns the old expiration duration value.
// It returns -1 and does nothing if the `key` does not exist in the cache.
2021-11-03 15:23:51 +08:00
c.UpdateExpire(ctx, "k1", 500*time.Millisecond)
2021-11-03 10:16:41 +08:00
2021-11-03 15:23:51 +08:00
expire1, _ := c.GetExpire(ctx, "k1")
fmt.Println(expire1)
2021-11-04 20:55:01 +08:00
2021-11-03 10:16:41 +08:00
// Output:
// 1s
// 500ms
}
2021-11-03 15:23:51 +08:00
func ExampleCache_Values() {
2021-11-03 10:16:41 +08:00
2021-11-04 20:55:01 +08:00
// Create a cache object,
// Of course, you can also easily use the gcache package method directly
2021-11-03 10:16:41 +08:00
c := gcache.New()
2021-11-04 20:55:01 +08:00
// Write value
2021-11-03 15:23:51 +08:00
c.Set(ctx, "k1", g.Map{"k1": "v1", "k2": "v2"}, 0)
2021-11-04 20:55:01 +08:00
// c.Set(ctx, "k2", "Here is Value2", 0)
// c.Set(ctx, "k3", 111, 0)
2021-11-03 10:16:41 +08:00
2021-11-04 20:55:01 +08:00
// Values returns all values in the cache as slice.
2021-11-03 15:23:51 +08:00
data, _ := c.Values(ctx)
2021-11-03 10:16:41 +08:00
fmt.Println(data)
2021-11-04 20:55:01 +08:00
// May Output:
2021-11-03 23:44:16 +08:00
// [map[k1:v1 k2:v2]]
2021-11-03 10:16:41 +08:00
}
2021-11-03 15:23:51 +08:00
func ExampleCache_Close() {
2021-11-03 10:16:41 +08:00
2021-11-04 20:55:01 +08:00
// Create a cache object,
// Of course, you can also easily use the gcache package method directly
2021-11-03 10:16:41 +08:00
c := gcache.New()
2021-11-04 20:55:01 +08:00
// Set Cache
2021-11-03 15:23:51 +08:00
c.Set(ctx, "k1", "v", 0)
data, _ := c.Get(ctx, "k1")
2021-11-03 10:16:41 +08:00
fmt.Println(data)
// Close closes the cache if necessary.
c.Close(ctx)
2021-11-03 15:23:51 +08:00
data1, _ := c.Get(ctx, "k1")
2021-11-03 10:16:41 +08:00
fmt.Println(data1)
// Output:
// v
// v
}
func ExampleCache_Contains() {
2021-11-04 20:55:01 +08:00
// Create a cache object,
// Of course, you can also easily use the gcache package method directly
2021-11-03 10:16:41 +08:00
c := gcache.New()
2021-11-04 20:55:01 +08:00
// Set Cache
2021-11-03 15:23:51 +08:00
c.Set(ctx, "k", "v", 0)
2021-11-03 10:16:41 +08:00
2021-11-04 20:55:01 +08:00
// Contains returns true if `key` exists in the cache, or else returns false.
2021-11-03 10:16:41 +08:00
// return true
2021-11-03 15:23:51 +08:00
data, _ := c.Contains(ctx, "k")
2021-11-03 10:16:41 +08:00
fmt.Println(data)
// return false
2021-11-03 15:23:51 +08:00
data1, _ := c.Contains(ctx, "k1")
2021-11-03 10:16:41 +08:00
fmt.Println(data1)
// Output:
// true
// false
}
func ExampleCache_Data() {
2021-11-04 20:55:01 +08:00
// Create a cache object,
// Of course, you can also easily use the gcache package method directly
2021-11-03 10:16:41 +08:00
c := gcache.New()
2021-11-03 15:23:51 +08:00
c.SetMap(ctx, g.MapAnyAny{"k1": "v1", "k2": "v2"}, 0)
c.Set(ctx, "k5", "v5", 0)
2021-11-03 10:16:41 +08:00
2021-11-04 20:55:01 +08:00
// Get retrieves and returns the associated value of given `key`.
// It returns nil if it does not exist, its value is nil or it's expired.
2021-11-03 23:50:57 +08:00
data, _ := c.Get(ctx, "k1")
2021-11-03 10:16:41 +08:00
fmt.Println(data)
2021-11-03 23:50:57 +08:00
data1, _ := c.Get(ctx, "k2")
2021-11-03 23:44:16 +08:00
fmt.Println(data1)
2021-11-03 23:50:57 +08:00
data2, _ := c.Get(ctx, "k5")
2021-11-03 23:44:16 +08:00
fmt.Println(data2)
2021-11-03 10:16:41 +08:00
// Output:
2021-11-03 23:44:16 +08:00
// v1
// v2
// v5
2021-11-03 10:16:41 +08:00
}
2021-11-03 15:23:51 +08:00
func ExampleCache_Get() {
2021-11-03 10:16:41 +08:00
2021-11-04 20:55:01 +08:00
// Create a cache object,
// Of course, you can also easily use the gcache package method directly
2021-11-03 10:16:41 +08:00
c := gcache.New()
2021-11-04 20:55:01 +08:00
// Set Cache Object
2021-11-03 15:23:51 +08:00
c.Set(ctx, "k1", "v1", 0)
2021-11-03 10:16:41 +08:00
2021-11-04 20:55:01 +08:00
// Get retrieves and returns the associated value of given `key`.
// It returns nil if it does not exist, its value is nil or it's expired.
2021-11-03 15:23:51 +08:00
data, _ := c.Get(ctx, "k1")
2021-11-03 10:16:41 +08:00
fmt.Println(data)
// Output:
// v1
}
2021-11-03 15:23:51 +08:00
func ExampleCache_GetExpire() {
2021-11-03 10:16:41 +08:00
2021-11-04 20:55:01 +08:00
// Create a cache object,
// Of course, you can also easily use the gcache package method directly
2021-11-03 10:16:41 +08:00
c := gcache.New()
// Set cache without expiration
2021-11-03 15:23:51 +08:00
c.Set(ctx, "k", "v", 10000*time.Millisecond)
2021-11-03 10:16:41 +08:00
2021-11-04 20:55:01 +08:00
// GetExpire retrieves and returns the expiration of `key` in the cache.
// It returns 0 if the `key` does not expire. It returns -1 if the `key` does not exist in the cache.
expire, _ := c.GetExpire(ctx, "k")
fmt.Println(expire)
2021-11-03 10:16:41 +08:00
// Output:
// 10s
}
2021-11-03 15:23:51 +08:00
func ExampleCache_GetOrSet() {
2021-11-03 10:16:41 +08:00
2021-11-04 20:55:01 +08:00
// Create a cache object,
// Of course, you can also easily use the gcache package method directly
2021-11-03 10:16:41 +08:00
c := gcache.New()
2021-11-04 20:55:01 +08:00
// GetOrSet retrieves and returns the value of `key`, or sets `key`-`value` pair and returns `value`
// if `key` does not exist in the cache.
2021-11-03 15:23:51 +08:00
data, _ := c.GetOrSet(ctx, "k", "v", 10000*time.Millisecond)
2021-11-03 10:16:41 +08:00
fmt.Println(data)
2021-11-03 15:23:51 +08:00
data1, _ := c.Get(ctx, "k")
2021-11-03 10:16:41 +08:00
fmt.Println(data1)
// Output:
// v
// v
}
2021-11-03 15:23:51 +08:00
func ExampleCache_GetOrSetFunc() {
2021-11-03 10:16:41 +08:00
2021-11-04 20:55:01 +08:00
// Create a cache object,
// Of course, you can also easily use the gcache package method directly
2021-11-03 10:16:41 +08:00
c := gcache.New()
2021-11-04 20:55:01 +08:00
// GetOrSetFunc retrieves and returns the value of `key`, or sets `key` with result of function `f`
// and returns its result if `key` does not exist in the cache.
2021-11-03 15:23:51 +08:00
c.GetOrSetFunc(ctx, 1, func() (interface{}, error) {
2021-11-03 10:16:41 +08:00
return 111, nil
}, 10000*time.Millisecond)
v, _ := c.Get(ctx, 1)
fmt.Println(v)
2021-11-03 15:23:51 +08:00
c.GetOrSetFunc(ctx, 2, func() (interface{}, error) {
2021-11-03 10:16:41 +08:00
return nil, nil
}, 10000*time.Millisecond)
v1, _ := c.Get(ctx, 2)
fmt.Println(v1)
// Output:
// 111
//
}
2021-11-03 15:23:51 +08:00
func ExampleCache_GetOrSetFuncLock() {
2021-11-04 20:55:01 +08:00
// Create a cache object,
// Of course, you can also easily use the gcache package method directly
2021-11-03 10:16:41 +08:00
c := gcache.New()
// Modify locking Note that the function `f` should be executed within writing mutex lock for concurrent safety purpose.
c.GetOrSetFuncLock(ctx, 1, func() (interface{}, error) {
return 11, nil
}, 0)
v, _ := c.Get(ctx, 1)
fmt.Println(v)
// Modification failed
c.GetOrSetFuncLock(ctx, 1, func() (interface{}, error) {
return 111, nil
}, 0)
v, _ = c.Get(ctx, 1)
fmt.Println(v)
c.Remove(ctx, g.Slice{1, 2, 3}...)
// Modify locking
c.GetOrSetFuncLock(ctx, 1, func() (interface{}, error) {
return 111, nil
}, 0)
v, _ = c.Get(ctx, 1)
fmt.Println(v)
// Modification failed
c.GetOrSetFuncLock(ctx, 1, func() (interface{}, error) {
return 11, nil
}, 0)
v, _ = c.Get(ctx, 1)
fmt.Println(v)
// Output:
// 11
// 11
// 111
// 111
}
2021-11-03 15:23:51 +08:00
func ExampleCache_Keys() {
2021-11-04 20:55:01 +08:00
// Create a cache object,
// Of course, you can also easily use the gcache package method directly
2021-11-03 10:16:41 +08:00
c := gcache.New()
2021-11-03 15:23:51 +08:00
c.SetMap(ctx, g.MapAnyAny{"k1": "v1", "k2": "v2"}, 0)
2021-11-03 10:16:41 +08:00
2021-11-04 20:55:01 +08:00
// Print the current list of key values
2021-11-03 10:16:41 +08:00
keys1, _ := c.Keys(ctx)
fmt.Println(keys1)
// Output:
// [k1 k2]
}
func ExampleCache_Remove() {
2021-11-04 20:55:01 +08:00
// Create a cache object,
// Of course, you can also easily use the gcache package method directly
2021-11-03 10:16:41 +08:00
c := gcache.New()
2021-11-03 23:44:16 +08:00
c.SetMap(ctx, g.MapAnyAny{"k1": "v1", "k2": "v2"}, 0)
2021-11-03 10:16:41 +08:00
2021-11-04 20:55:01 +08:00
// Remove deletes one or more keys from cache, and returns its value.
// If multiple keys are given, it returns the value of the last deleted item.
2021-11-03 15:23:51 +08:00
c.Remove(ctx, "k1")
2021-11-03 10:16:41 +08:00
data, _ := c.Data(ctx)
fmt.Println(data)
// Output:
2021-11-03 23:44:16 +08:00
// map[k2:v2]
2021-11-03 10:16:41 +08:00
}
2021-11-03 15:23:51 +08:00
func ExampleCache_Removes() {
2021-11-04 20:55:01 +08:00
// Create a cache object,
// Of course, you can also easily use the gcache package method directly
2021-11-03 10:16:41 +08:00
c := gcache.New()
2021-11-03 15:23:51 +08:00
c.SetMap(ctx, g.MapAnyAny{"k1": "v1", "k2": "v2", "k3": "v3", "k4": "v4"}, 0)
2021-11-03 10:16:41 +08:00
2021-11-04 20:55:01 +08:00
// Remove deletes one or more keys from cache, and returns its value.
// If multiple keys are given, it returns the value of the last deleted item.
2021-11-03 23:50:57 +08:00
c.Removes(ctx, g.Slice{"k1", "k2", "k3"})
2021-11-03 10:16:41 +08:00
data, _ := c.Data(ctx)
fmt.Println(data)
// Output:
2021-11-03 23:44:16 +08:00
// map[k4:v4]
2021-11-03 10:16:41 +08:00
}