forked from mirror/redis
Update changelog
This commit is contained in:
parent
8e8510431d
commit
37f5a2b1cd
|
@ -3,6 +3,11 @@
|
||||||
> :heart:
|
> :heart:
|
||||||
> [**Uptrace.dev** - All-in-one tool to optimize performance and monitor errors & logs](https://uptrace.dev)
|
> [**Uptrace.dev** - All-in-one tool to optimize performance and monitor errors & logs](https://uptrace.dev)
|
||||||
|
|
||||||
|
## v8.9
|
||||||
|
|
||||||
|
- Changed `PubSub.Channel` to only rely on `Ping` result. You can now use `WithChannelSize`,
|
||||||
|
`WithChannelHealthCheckInterval`, and `WithChannelSendTimeout` to override default settings.
|
||||||
|
|
||||||
## v8.8
|
## v8.8
|
||||||
|
|
||||||
- To make updating easier, extra modules now have the same version as go-redis does. That means that
|
- To make updating easier, extra modules now have the same version as go-redis does. That means that
|
||||||
|
|
|
@ -484,7 +484,7 @@ func WithChannelHealthCheckInterval(d time.Duration) ChannelOption {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// WithChannelSendTimeout specifies that channel send timeout after which
|
// WithChannelSendTimeout specifies the channel send timeout after which
|
||||||
// the message is dropped.
|
// the message is dropped.
|
||||||
//
|
//
|
||||||
// The default is 60 seconds.
|
// The default is 60 seconds.
|
||||||
|
|
Loading…
Reference in New Issue