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.1Explain how users can interact with the various modules.
To run tests for all modules, use the following command:
make testTo tidy up the project's Go modules, use the following command:
make tidyTo upgrade project dependencies, use the following command:
make deps-upgradeTo clean the Go module cache, use the following command:
make deps-clean-cache