b7e3a0da86
Release Tag / release (push) Successful in 34s
- Added metrics for bytes saved from cache to improve performance insights. - Updated cache eviction strategies in MemoryFS and DiskFS to include metrics tracking for hits and evictions. - Enhanced README.md with updated garbage collection algorithm descriptions and recommendations for cache usage. - Introduced new madviseSequential functionality for improved memory access hints on Unix systems. - Adjusted validation configuration in examples to better reflect realistic usage scenarios.
21 lines
475 B
Modula-2
21 lines
475 B
Modula-2
module s1d3sw1ped/steamcache2
|
|
|
|
go 1.23.0
|
|
|
|
require (
|
|
github.com/docker/go-units v0.5.0
|
|
github.com/edsrzf/mmap-go v1.1.0
|
|
github.com/rs/zerolog v1.33.0
|
|
github.com/spf13/cobra v1.8.1
|
|
golang.org/x/sync v0.16.0
|
|
golang.org/x/sys v0.12.0
|
|
gopkg.in/yaml.v3 v3.0.1
|
|
)
|
|
|
|
require (
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.19 // indirect
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
)
|