Simple .net socket message queuing system.
Перейти к файлу
Daniel Gosnell 8b1a90f094
Update LICENSE
2019-05-15 12:01:30 -04:00
docs Update secured-transport.md 2018-06-21 17:17:14 -04:00
src Updated version. 2019-02-06 15:53:32 -05:00
tools Renamed Socket classes to TcpSocket since that is all it is designed to handle at this point. 2017-10-27 18:04:00 -04:00
.gitattributes Add .gitignore and .gitattributes. 2016-07-29 08:17:22 -04:00
.gitignore Added bat file to quickly output git logs since tag. 2016-08-30 15:12:51 -04:00
.travis.yml Removed running of tests for now on Mono. 2017-10-30 10:40:30 -04:00
LICENSE Update LICENSE 2019-05-15 12:01:30 -04:00
README.md Corrected to 256 bit AES encryption 2018-07-23 11:22:04 -04:00

README.md

DtronixMessageQueue Build Status NuGet

DtronixMessageQueue is a small .net TCP message queueing system using the microsoft SocketAsyncEventArgs interface.

All transported information is encrypted by 256 bit AES.

The purpose of this project is to provide a simple transport protocol for multiple systems, mostly being the DtronixRpc system.

Performance

DtronixMessageQueue

Sample performance tests. Numbers are averages from 5 loops of the performance test program. Full Performance Test

Intel(R) Core(TM) i5-3470 CPU @ 3.20GHz with 8 GB of RAM installed.

Build Messages Msg Bytes Milliseconds Msg/sec MBps
Release 1 40 5 200 0.01
Release 1,000,000 40 1,193 838,580 33.54
Release 100,000 2,000 1,222 81,851 163.70
Release 10,000 60,048 2,953 3,385 203.32

DtronixMessageQueue.Rpc

Sample performance tests for RPC calls. Numbers are averages from 4 loops of the Rpc performance test program. Full Performance Test

Intel(R) Core(TM) i5-3470 CPU @ 3.20GHz with 8 GB of RAM installed.

Build Type Calls Milliseconds RPC/sec
Release NoReturn 200,000 1,859 107,632
Release Await 200,000 2,794 71,614
Release Return 10,000 1,595 6,273
Release Exception 2,000 552 3,631

Protocols

DtronixMessageQueue utilizies several layers a custom encryption protocol on top of the TCP protocol.

DtronixMessageQueie laytes the message queue protocol on top of the TcpScocket protocol.

License

Released under MIT license