Skip to content

Commit 73bfd46

Browse files
committed
Updated README and Assembly version
1 parent 5eaaa2e commit 73bfd46

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,40 @@
1-
SIMPLSOCKETS 1.1.2
1+
SIMPLSOCKETS 1.2.0
22
===========
33

44

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

7-
**NUGET:** http://www.nuget.org/packages/SimplSockets
8-
97
**WEB:** http://www.getdache.net
108

11-
**EMAIL:** info@getdache.net
9+
**EMAIL:** [info@getdache.net](mailto:info@getdache.net)
10+
11+
**NUGET:** [SimplSockets](http://www.nuget.org/packages/SimplSockets)
1212

1313

1414
VERSION INFORMATION
1515
============================================
1616

1717

18-
1.1.2
18+
1.2.0
1919
------------------
2020

21-
- Optimizations to initial buffer allocations and sizes which result in a substantially smaller memory footprint
21+
- SUBSTANTIALLY optimized performance and memory usage. Much less memory used and buffer object creation. The result is much faster sockets!
2222

23-
- Heuristics-based pool population (20% allocated initially instead of 100%, will grow as needed)
23+
- BREAKING CHANGES: altered interfaces and methods to be more OO-friendly and to enable client and server to have access to same operations
2424

25-
- 1/10 (or less) memory allocated for buffer collections when compared to previous versions.
25+
- Exposed events for MessageReceived and Error that you can hook into to receive (and process) messages, and to handle any communication errors
2626

27+
- Pool and Blocking Queue optimizations
2728

28-
INSTALLATION INSTRUCTIONS
29-
============================================
29+
- Refactored almost all code to be much more efficient
3030

3131

32-
Just include the DLL in your project ([NuGet](http://www.nuget.org/packages/SimplSockets)) and then create the appropriate client or server object!
32+
INSTALLATION INSTRUCTIONS
33+
============================================
3334

34-
To create a client:
3535

36-
`var client = SimplSocket.CreateClient(...)`
36+
Just include the DLL in your project ([NuGet](http://www.nuget.org/packages/SimplSockets)) and then create a SimplSocket!
3737

38-
To create a server:
38+
To create a client or server:
3939

40-
`var server = SimplSocket.CreateServer(...)`
40+
`var clientOrServer = new SimplSocket()`

SimplSockets/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@
2020
// You can specify all the values or you can default the Build and Revision Numbers
2121
// by using the '*' as shown below:
2222
// [assembly: AssemblyVersion("1.0.*")]
23-
[assembly: AssemblyVersion("1.1.2.*")]
23+
[assembly: AssemblyVersion("1.2.0.*")]

0 commit comments

Comments
 (0)