How update Go library
Installation of go library is pretty simple:
go get github.com/garyburd/redigo/redis
From time to time, you want to get fresh version of it. If you run that command again it will NOT update the library – because it’s already there. To update it you need to use the -u
switch:
go get -u github.com/garyburd/redigo/redis