Skip to content

Commit a057dea

Browse files
committed
Minor updates
* Update the example in the README and small.go example * Version bump in ttlMap.go
1 parent f770ab3 commit a057dea

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ func main() {
2424
startSize := 3 // initial number of items in map
2525
pruneInterval := time.Duration(time.Second * 1) // search for expired items every 'pruneInterval' seconds
2626
refreshLastAccessOnGet := true // update item's 'lastAccessTime' on a .Get()
27+
28+
// any comparable data type such as int, uint64, pointers and struct types (if all field types are comparable)
29+
// can be used as the key type, not just string
2730
t := TtlMap.New[string](maxTTL, startSize, pruneInterval, refreshLastAccessOnGet)
2831
defer t.Close()
2932

@@ -84,6 +87,7 @@ TtlMap length: 0
8487
* Adopted from: [Map with TTL option in Go](https://stackoverflow.com/a/25487392/452281)
8588
* * Answer created by: [OneOfOne](https://stackoverflow.com/users/145587/oneofone)
8689
* [/u/skeeto](https://old.reddit.com/user/skeeto): suggestions for the `New` function
90+
* `@zhayes` on the Go Discord: helping me with Go Generics
8791

8892
## Disclosure Notification
8993

example/small/small.go

+3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ func main() {
1212
startSize := 3 // initial number of items in map
1313
pruneInterval := time.Duration(time.Second * 1) // search for expired items every 'pruneInterval' seconds
1414
refreshLastAccessOnGet := true // update item's 'lastAccessTime' on a .Get()
15+
16+
// any comparable data type such as int, uint64, pointers and struct types (if all field types are comparable)
17+
// can be used as the key type, not just string
1518
t := TtlMap.New[string](maxTTL, startSize, pruneInterval, refreshLastAccessOnGet)
1619
defer t.Close()
1720

ttlMap.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import (
2222
"time"
2323
)
2424

25-
const version string = "1.4.0"
25+
const version string = "1.5.0"
2626

2727
type CustomKeyType interface {
2828
comparable

0 commit comments

Comments
 (0)