GalaxyWave.RedisStream
1.0.19
dotnet add package GalaxyWave.RedisStream --version 1.0.19
NuGet\Install-Package GalaxyWave.RedisStream -Version 1.0.19
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="GalaxyWave.RedisStream" Version="1.0.19" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="GalaxyWave.RedisStream" Version="1.0.19" />
<PackageReference Include="GalaxyWave.RedisStream" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add GalaxyWave.RedisStream --version 1.0.19
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: GalaxyWave.RedisStream, 1.0.19"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package GalaxyWave.RedisStream@1.0.19
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=GalaxyWave.RedisStream&version=1.0.19
#tool nuget:?package=GalaxyWave.RedisStream&version=1.0.19
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
RedisStream
High level API for redis client uage based on Stackexchange Redis
Usage
Usage
Init Connection
// with connection string
ConnectionMultiplexer connection = RedisConnectionHelper.TryConnect(connStr);
// with option
ConfigurationOptions options;
ConnectionMultiplexer connection = RedisConnectionHelper.TryConnect(options);
// with override reconnect retry policy
ConnectionMultiplexer connection = RedisConnectionHelper.TryConnect(options, false);
IDatabase redisDb = connection.GetDatabase();
StreamConnection streamConn = new StreamConnection(connection, redisDb);
Create Observable
// support new message only
var streamObservable = streamConn.CreateObservable(stream, consumer, consumergroup).Subscribe(msgArr => { Console.WriteLine(msgArr[0]);});
Publish
streamConn.Publish(streamKey, payload);
PublishLatest
// Truncate old data from stream before adding new data
streamConn.PublishLatest(streamKey, payload);
Dispose Connection/Observable
connection?.Dispose();
streamObservable?.Dispose();
Information
There is any issue you got, please raise issue in github. (https://github.com/galaxywave-dev/redisStream-public.git)
Need to handle exception for all usage
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- StackExchange.Redis (>= 2.8.0)
- System.Reactive (>= 6.0.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.0.19 | 973 | 7/24/2024 |
| 1.0.18 | 587 | 8/28/2023 |
| 1.0.17 | 592 | 7/27/2023 |
| 1.0.16 | 874 | 3/13/2023 |
| 1.0.15 | 674 | 3/13/2023 |
| 1.0.14 | 2,497 | 11/1/2022 |
| 1.0.13 | 1,958 | 8/29/2022 |
| 1.0.12 | 822 | 8/26/2022 |
| 1.0.11 | 836 | 8/26/2022 |
| 1.0.10 | 781 | 8/24/2022 |
| 1.0.9 | 995 | 8/23/2022 |
| 1.0.8 | 1,775 | 8/9/2022 |
| 1.0.7 | 854 | 8/9/2022 |
| 1.0.6 | 837 | 8/8/2022 |
| 1.0.5 | 1,187 | 6/13/2022 |
| 1.0.4 | 868 | 6/12/2022 |
| 1.0.3 | 881 | 6/11/2022 |
| 1.0.2 | 845 | 6/11/2022 |
| 1.0.1 | 917 | 6/11/2022 |
| 1.0.0 | 1,804 | 6/9/2022 |
Loading failed