HarakaMQ
vert to netstandard and added more usability to the messagebroker
- ขณะนี้คิวข้อความไม่ทำงานในขณะที่ฉันกำลังแก้ไข ฉันกำลังทำงานในสาขานี้ https://github.com/Rotvig/HarakaMQ/tree/add_unit_tests ?
มิดเดิลแวร์เน้นข้อความที่เชื่อถือได้ซึ่งใช้ UDP
https://www.nuget.org/packages/HarakaMQ.Client/
เริ่มต้นโบรกเกอร์โดยการสร้างโปรเจ็กต์ MessageBroker และรันด้วยคำสั่ง "dotnet HarakaMQ.MessageBroker.dll" เมื่อทำงานในการตั้งค่าคลัสเตอร์ ให้แยกโฟลเดอร์ที่มี dll ที่สร้างขึ้นสำหรับโบรกเกอร์แต่ละรายที่คุณมี อย่าลืมเพิ่มไฟล์ "settings.json" ในไดเร็กทอรีที่ทำงานอยู่โดยมีเนื้อหาดังนี้:
{
"BrokerPort" : 11100 ,
"PrimaryNumber" : 1 ,
"AntiEntropyMilliseonds" : 1000 ,
"RunInCLusterSetup" : false ,
"Brokers" :[]
}
var factory = new ConnectionFactory { HostName = "127.0.0.1" , ListenPort = 11000 , Port = 11100 } ;
using ( var connection = factory . CreateConnection ( ) )
using ( var channel = connection . CreateModel ( ) )
{
channel . QueueDeclare ( "hello" ) ;
channel . BasicPublish ( "hello" , Encoding . UTF8 . GetBytes ( "Hello world" ) ) ;
Console . WriteLine ( " Press [enter] to exit." ) ;
Console . ReadLine ( ) ;
}
var factory = new ConnectionFactory { HostName = "127.0.0.1" , ListenPort = 12000 , Port = 11100 } ;
using ( var connection = factory . CreateConnection ( ) )
using ( var channel = connection . CreateModel ( ) )
{
channel . QueueDeclare ( "hello" ) ;
var consumer = new DefaultBasicConsumer ( channel ) ;
consumer . Received += ( model , ea ) =>
{
Console . WriteLine ( Encoding . UTF8 . GetString ( ea . Body ) ) ;
} ;
channel . BasicConsume ( "hello" , consumer ) ;
Console . WriteLine ( " Press [enter] to exit." ) ;
Console . ReadLine ( ) ;
}
https://github.com/Rotvig/HarakaMQ-Benchmark