MindTouch.Clacks.Client
0.3.4.8
Install-Package MindTouch.Clacks.Client -Version 0.3.4.8
dotnet add package MindTouch.Clacks.Client --version 0.3.4.8
<PackageReference Include="MindTouch.Clacks.Client" Version="0.3.4.8" />
paket add MindTouch.Clacks.Client --version 0.3.4.8
#r "nuget: MindTouch.Clacks.Client, 0.3.4.8"
// Install MindTouch.Clacks.Client as a Cake Addin
#addin nuget:?package=MindTouch.Clacks.Client&version=0.3.4.8
// Install MindTouch.Clacks.Client as a Cake Tool
#tool nuget:?package=MindTouch.Clacks.Client&version=0.3.4.8
A client library for quickly building smtp/memcache transport protocol communication.
Product | Versions |
---|---|
.NET Framework | net40 net403 net45 net451 net452 net46 net461 net462 net463 net47 net471 net472 net48 |
-
- log4net (>= 2.0.6)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
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