Skip to content

Commit

Permalink
0.3.16 closes #11
Browse files Browse the repository at this point in the history
  • Loading branch information
smrchy committed Jun 16, 2015
1 parent deb56ab commit e7d81f7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,9 @@
# CHANGELOG for rsmq

## 0.3.16

* Docs (Redis 2.6+ version requirement)

## 0.3.15

* Added LICENSE.md
Expand Down
10 changes: 4 additions & 6 deletions README.md
Expand Up @@ -15,14 +15,12 @@ A lightweight message queue for Node.js that requires no dedicated queue server.
* Guaranteed **delivery of a message to exactly one recipient** within a messages visibility timeout.
* Received messages that are not deleted will reappear after the visibility timeout.
* [Test coverage](http://travis-ci.org/smrchy/rsmq)
* Similar to Amazon SQS - with some differences:
* No ReceiptHandle. A message is deleted by the message id. The message id is returned by the `sendMessage` and `receiveMessage` method.
* No MessageRetentionPeriod: Messages stay in the queue unless deleted.
* No bulk operations (SendMessageBatch, DeleteMessageBatch).
* Some SQS specific features are missing.
* A message is deleted by the message id. The message id is returned by the `sendMessage` and `receiveMessage` method.
* Messages stay in the queue unless deleted.
* Optional RESTful interface via [rest-rsmq](https://github.com/smrchy/rest-rsmq)


**Note:** RSMQ uses the Redis EVAL command (LUA scripts) so the minimum Redis version is 2.6+.

## Usage

* After creating a queue you can send messages to that queue.
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "rsmq",
"description": "A really simple message queue based on Redis",
"version": "0.3.15",
"version": "0.3.16",
"license": "MIT",
"author": "P. Liess <smrchy+npm@gmail.com>",
"engines": {
Expand Down

0 comments on commit e7d81f7

Please sign in to comment.