Skip to content

Instantly share code, notes, and snippets.

@sanketsudake
Last active February 6, 2025 03:38
Show Gist options
  • Save sanketsudake/c6ab44eaedb9328b64ee062bd46b9642 to your computer and use it in GitHub Desktop.
Save sanketsudake/c6ab44eaedb9328b64ee062bd46b9642 to your computer and use it in GitHub Desktop.
Go Cachec Checking and Cleanup

Check Go Cache Size

du -sh $(go env GOCACHE)

Check largest files in cache

find $(go env GOCACHE) -type f | xargs du -s | sort -n

Clean Cache

go clean -modcache

OR

go clean -cache -modcache

References

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment