Skip to content

Releases: newtmq/newtmq-server

NewtMQ_v0.4.0

12 Sep 23:41
Compare
Choose a tag to compare

From this release, the feature of persistent queue is supported, which is mentioned in #3 .

At the beginning of newtmq-server, all persistent message which is stored in storage is moved to queue in RAM.
All unicast in-coming message will be stored in queue and also storage which is a file. The strategy of storing message is simple stacking. NewtMQ knows the index where the messages have been already persistent.

NewtMQ_v0.3.0

04 Jul 14:11
Compare
Choose a tag to compare

The main topic of this release is the feature of Topic message-passing which is mentioned in #8.

Topic messaging behave the same way with topic exchange of AMQP.
And the interface to send / subscribe message to it is the same with RabbitMQ STOMP Adapter.

You can do it faster with existing source code of rabbitmq-stomp.

NewtMQ_v0.2.0

22 Jun 23:25
Compare
Choose a tag to compare

Implement a new feature of temp-queue.
The concept of this is the same with Direct reply-to of RabbitMQ
The temp-queue make it enables to do RPC.

Modification of serious problem about concurrent processing.

15 May 01:51
Compare
Choose a tag to compare

Corrected a problem of concurrent processing, that publishing socket is overwritten when multiple publisher connect concurrently.
User can do concurrent publishing / subscribing messages safely from this release.

newtmq_v0_1_0

07 May 12:27
Compare
Choose a tag to compare

implement server to handle basic STOMP