|
2 | 2 |
|
3 | 3 | **StackExchange.Redis.Extensions** is a library that extends [StackExchange.Redis](https://github.com/StackExchange/StackExchange.Redis), making it easier to work with Redis in .NET applications. It wraps the base library with serialization, connection pooling, and higher-level APIs so you can store and retrieve complex objects without writing boilerplate code. |
4 | 4 |
|
5 | | - |
| 5 | +[](https://github.com/imperugo/StackExchange.Redis.Extensions/actions/workflows/ci.yml) |
| 6 | +[](https://github.com/imperugo/StackExchange.Redis.Extensions/actions/workflows/codeql.yml) |
| 7 | +[](https://www.nuget.org/packages/StackExchange.Redis.Extensions.Core/) |
| 8 | + |
| 9 | + |
6 | 10 |
|
7 | 11 | ## Features |
8 | 12 |
|
@@ -132,13 +136,13 @@ public class MyService(IRedisDatabase redis) |
132 | 136 |
|
133 | 137 | ### Compressors (optional) |
134 | 138 |
|
135 | | -| Package | Algorithm | Dependency | Best for | |
136 | | -|---------|----------|------------|----------| |
137 | | -| Compression.LZ4 | LZ4 | K4os.Compression.LZ4 | Lowest latency | |
138 | | -| Compression.Snappier | Snappy | Snappier | Low latency | |
139 | | -| Compression.ZstdSharp | Zstandard | ZstdSharp.Port | Best ratio/speed balance | |
140 | | -| Compression.GZip | GZip | None (BCL) | Wide compatibility | |
141 | | -| Compression.Brotli | Brotli | None (BCL) | Best ratio for text | |
| 139 | +| Package | Algorithm | Best for | NuGet | |
| 140 | +|---------|----------|----------|-------| |
| 141 | +| Compression.LZ4 | LZ4 | Lowest latency | [](https://www.nuget.org/packages/StackExchange.Redis.Extensions.Compression.LZ4/) | |
| 142 | +| Compression.Snappier | Snappy | Low latency | [](https://www.nuget.org/packages/StackExchange.Redis.Extensions.Compression.Snappier/) | |
| 143 | +| Compression.ZstdSharp | Zstandard | Best ratio/speed | [](https://www.nuget.org/packages/StackExchange.Redis.Extensions.Compression.ZstdSharp/) | |
| 144 | +| Compression.GZip | GZip | Wide compatibility | [](https://www.nuget.org/packages/StackExchange.Redis.Extensions.Compression.GZip/) | |
| 145 | +| Compression.Brotli | Brotli | Best ratio for text | [](https://www.nuget.org/packages/StackExchange.Redis.Extensions.Compression.Brotli/) | |
142 | 146 |
|
143 | 147 | ## Usage Examples |
144 | 148 |
|
|
0 commit comments