SimplSockets 1.1.2

The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
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.

NuGet packages

This package is not used by any NuGet packages.

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

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


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

**NUGET:** 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](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(...)`