A Golang Redis connector library with features for Redis Pub/Sub, key-value operations, and distributed locking.
Welcome to the Redis Connector for Go repository! This library provides a set of tools for seamless interaction with Redis in your Go applications. It includes features for Redis Pub/Sub, key-value operations, and distributed locking.
Golang version v1.20
- Latest version
go get -u github.com/sivaosorg/redisconn@latest
- Use a specific version (tag)
go get github.com/sivaosorg/redisconn@v0.0.1
Explain how users can interact with the various modules.
To run tests for all modules, use the following command:
make test
To tidy up the project's Go modules, use the following command:
make tidy
To upgrade project dependencies, use the following command:
make deps-upgrade
To clean the Go module cache, use the following command:
make deps-clean-cache