CloudStructures
CloudStructures copied to clipboard
Redis Client based on StackExchange.Redis.
StackExchange.Redis automatically reconnect when connection is lost. So it's not needed to check if it's connected or not. It's also better to keep same ConnectionMultiplexer for working with Pub/Sub API.
StachExchange.Redis 2.x has new lease APIs. It can avoid `byte[]` allocation in deserialize. ```csharp using (var lease = conn.GetDatabase().StringGetLease("key")) { return MessagePackSerializer.Deserialize(lease.Memory); } ``` For serialize, RedisValue accepts ReadOnlyMemory so...
- Drop .NET 5 - Support .NET 7 / .NET 8 - Use latest StackExchange.Redis - Adapt nullable reference types - Adopt Directory.Packages.props - Adopt Directory.Build.props - Add README.md into...
First of all, thanks for upgrading this library to .NET Core. It's a great tool and I'm coming back to it after several years away from using Redis. The various...