MindTouch.Clacks.Server 0.3.4.7

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

// Install MindTouch.Clacks.Server as a Cake Tool
#tool nuget:?package=MindTouch.Clacks.Server&version=0.3.4.7

A server library for quickly building smtp/memcache transport protocol communication.

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  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.

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
0.3.4.8 1,156 12/28/2016
0.3.4.7 1,048 11/17/2016
0.3.4.6 984 8/18/2016
0.3.4.5 1,175 5/21/2015
0.3.4.4 1,126 4/15/2015
0.3.3.2 1,059 4/6/2015

0.3.4
=====
* Fixed a connection issue in the Client when running on mono

0.3.3
=====
* using log4net logger directly
* distributing as NuGet package

0.3.2
=====
* eliminating some uncaught exceptions in command handling pipeline
* sync multi command fix (avoid infinite response loop)

0.3.1
=====
* Replaced TimeoutException with SocketException(10060) which is the more appropriate socket timeout exception

0.3
===
* Replaced IStatsCollector with IClacksInstrumentation for better hooks into current state of the server
* Fixed various issues that could cause errors under load
 * New client and server request processing logic
 * Fixed bad Socket.Listen queue size
* ConnectionPool
 * most recently used sockets are now added to the front of the available queue, since they have a higher likelyhood of still being connected
 * do not check Connected on socket on each pool fetch, since it has significant overhead
 * Better Connected logic (i.e. polls socket, rather than just use the socket's Connected field)
 * When the pool is exhausted, incoming requests for sockets are now queue'd for ConnectTimeout rather than failing immediately
* ClackClient
 * Added auto-reconnect/retry on request failure (assumes stateless server, can be turned off)
 * now requires an IConnectionPool, so while host/port & IPEndpoint Ctor's still exist, the ISocket Ctor is gone
* Added the Client's endpoint to server's Request object