NsqSharp 0.5.3

There is a newer version of this package available.
See the version list below for details.
dotnet add package NsqSharp --version 0.5.3
NuGet\Install-Package NsqSharp -Version 0.5.3
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="NsqSharp" Version="0.5.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add NsqSharp --version 0.5.3
#r "nuget: NsqSharp, 0.5.3"
#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.
// Install NsqSharp as a Cake Addin
#addin nuget:?package=NsqSharp&version=0.5.3

// Install NsqSharp as a Cake Tool
#tool nuget:?package=NsqSharp&version=0.5.3

Client library for NSQ, a realtime distributed messaging platform. http://nsq.io/

Product Compatible and additional computed target framework versions.
.NET Framework net35 is compatible.  net40 is compatible.  net403 was computed.  net45 is compatible.  net451 is compatible.  net452 is compatible.  net46 is compatible.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on NsqSharp:

Package Downloads
Rpac.Core.Mail

Rpac.Core.Mail

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.5.4 48,312 10/5/2015
0.5.3 1,392 8/18/2015
0.5.2 2,016 8/12/2015
0.5.1-beta1 1,588 8/9/2015
0.5.0-beta1 1,060 7/18/2015
0.4.0 1,409 4/14/2015
0.3.4 1,413 4/12/2015
0.3.3 1,211 4/1/2015
0.3.2 1,313 3/27/2015
0.3.1 1,287 3/23/2015
0.3.0 1,195 3/17/2015

New features:
- Consumer: Add functionality to redistribute RDY count to nsqd nodes with messages when one or more nodes is idle greater than Config.LowRdyIdleTimeout. Enables better utilization of Consumer processing when one or more nsqd nodes is idle for a given topic. Example: if nsqd-1 has 100,000 messages and nsqd-2 has 0, more of the RDY count will be given to nsqd-1 instead of the normal even distribution across connections.
- Add Config.RDYRedistributeOnIdle to enable above behavior. Default = false.

Fixed issues:
- Fix Conn.LastMessageTime calculation.