New
7.0.6
What's Changed
Redis Sharded Pub/Sub support (https://github.com/Cysharp/MagicOnion/pull/963)
Sharded Pub/Sub can now be used by specifying RedisChannelFactory.Sharded in the ChannelFactory property of RedisGroupOptions, as shown in the code below.
services.Configure<RedisGroupOptions>(options =>
{
options.ChannelFactory = RedisChannelFactory.Sharded;
});
Other Changes
- Update extensibility.md by @gdh2222 in https://github.com/Cysharp/MagicOnion/pull/957
- docs: fixed streaming-hub's not-working docs by @OJII3 in https://github.com/Cysharp/MagicOnion/pull/960
- Update extensibility.md by @freetale in https://github.com/Cysharp/MagicOnion/pull/959
- Apply fixes from PR #960 and #959 to Japanese and Korean documentation by @Copilot in https://github.com/Cysharp/MagicOnion/pull/962
- Update Multicaster package version to 2.1.1 by @mayuki in https://github.com/Cysharp/MagicOnion/pull/964
New Contributors
- @gdh2222 made their first contribution in https://github.com/Cysharp/MagicOnion/pull/957
- @OJII3 made their first contribution in https://github.com/Cysharp/MagicOnion/pull/960