SimplSockets 1.1.2

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

// Install SimplSockets as a Cake Tool
#tool nuget:?package=SimplSockets&version=1.1.2

SimplSockets is a lightweight, high performance, powerful .NET socket wrapper that makes communication via Sockets easy and efficient.

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on SimplSockets:

Repository Stars
haneytron/dache
Dache is a highly scalable, efficient, well-performing distributed caching system developed for and in the .NET framework.
Version Downloads Last updated
1.4.2 170 4/23/2015
1.4.1 49 4/21/2015
1.4.0 167 1/10/2015
1.3.9 51 1/8/2015
1.3.8 47 1/8/2015
1.3.7 45 1/8/2015
1.3.6 45 1/7/2015
1.3.5 138 12/4/2014
1.3.4 323 11/13/2014
1.3.3 334 11/12/2014
1.3.2 476 11/12/2014
1.3.1 117 10/3/2014
1.3.0 66 9/25/2014
1.2.1 130 7/15/2014
1.2.0 62 7/12/2014
1.1.2 57 4/19/2014
1.1.1 48 1/15/2014
1.1.0 48 12/12/2013
1.0.1 50 11/13/2013

SIMPLSOCKETS 1.1.2
===========


A spinoff library of Dache that provides highly efficient, scalable, simple socket communication.

**NUGET:** https://www.nuget.org/packages/SimplSockets

**WEB:**   http://www.getdache.net/

**EMAIL:** info@getdache.net


VERSION HISTORY
============================================


1.1.2
------------------

- Optimizations to initial buffer allocations and sizes which result in a substantially smaller memory footprint

- Heuristics-based pool population (20% allocated initially instead of 100%, will grow as needed)

- 1/10 (or less) memory allocated for buffer collections when compared to previous versions.


INSTALLATION INSTRUCTIONS
============================================


Just include the DLL in your project ([NuGet](https://www.nuget.org/packages/SimplSockets)) and then create the appropriate client or server object!

To create a client:

`var client = SimplSocket.CreateClient(...)`

To create a server:

`var server = SimplSocket.CreateServer(...)`