Skip to content

Commit 8191b7e

Browse files
committed
Fix README badges: CI status, test count, NuGet for compressors
1 parent 0ebf863 commit 8191b7e

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed

README.md

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22

33
**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.
44

5-
![.NET Core](https://github.com/imperugo/StackExchange.Redis.Extensions/actions/workflows/dotnetcore.yml/badge.svg)
5+
[![CI](https://github.com/imperugo/StackExchange.Redis.Extensions/actions/workflows/ci.yml/badge.svg)](https://github.com/imperugo/StackExchange.Redis.Extensions/actions/workflows/ci.yml)
6+
[![CodeQL](https://github.com/imperugo/StackExchange.Redis.Extensions/actions/workflows/codeql.yml/badge.svg)](https://github.com/imperugo/StackExchange.Redis.Extensions/actions/workflows/codeql.yml)
7+
[![NuGet](https://img.shields.io/nuget/v/StackExchange.Redis.Extensions.Core.svg?style=flat&label=NuGet)](https://www.nuget.org/packages/StackExchange.Redis.Extensions.Core/)
8+
![Tests](https://img.shields.io/badge/tests-970%2B%20passing-brightgreen)
9+
![.NET](https://img.shields.io/badge/.NET-8%20%7C%209%20%7C%2010-blue)
610

711
## Features
812

@@ -132,13 +136,13 @@ public class MyService(IRedisDatabase redis)
132136

133137
### Compressors (optional)
134138

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 | [![NuGet](https://img.shields.io/nuget/v/StackExchange.Redis.Extensions.Compression.LZ4.svg?style=flat)](https://www.nuget.org/packages/StackExchange.Redis.Extensions.Compression.LZ4/) |
142+
| Compression.Snappier | Snappy | Low latency | [![NuGet](https://img.shields.io/nuget/v/StackExchange.Redis.Extensions.Compression.Snappier.svg?style=flat)](https://www.nuget.org/packages/StackExchange.Redis.Extensions.Compression.Snappier/) |
143+
| Compression.ZstdSharp | Zstandard | Best ratio/speed | [![NuGet](https://img.shields.io/nuget/v/StackExchange.Redis.Extensions.Compression.ZstdSharp.svg?style=flat)](https://www.nuget.org/packages/StackExchange.Redis.Extensions.Compression.ZstdSharp/) |
144+
| Compression.GZip | GZip | Wide compatibility | [![NuGet](https://img.shields.io/nuget/v/StackExchange.Redis.Extensions.Compression.GZip.svg?style=flat)](https://www.nuget.org/packages/StackExchange.Redis.Extensions.Compression.GZip/) |
145+
| Compression.Brotli | Brotli | Best ratio for text | [![NuGet](https://img.shields.io/nuget/v/StackExchange.Redis.Extensions.Compression.Brotli.svg?style=flat)](https://www.nuget.org/packages/StackExchange.Redis.Extensions.Compression.Brotli/) |
142146

143147
## Usage Examples
144148

0 commit comments

Comments
 (0)