5 Commits

Author SHA1 Message Date
James Coglan 86ae4baa3d Prepare for release 0.1.3. 2013-05-11 15:13:55 +01:00
James Coglan e84e20bba4 Test on Node 0.11. 2013-05-11 14:59:52 +01:00
James Coglan 4fdafd8877 Merge pull request #8 from bitium/self_vs_this
self vs this fix for inside a callback
2013-05-11 06:55:54 -07:00
Andrew Arrow 01b84b338c self vs this fix for inside a callback 2013-05-06 12:51:50 -07:00
James Coglan fa4cd75dba Bump copyright date. 2013-04-28 12:27:30 +01:00
6 changed files with 70 additions and 69 deletions
-1
View File
@@ -2,7 +2,6 @@
.gitignore
.gitmodules
.npmignore
.redcar
.travis.yml
dump.rdb
Rakefile
+1
View File
@@ -4,6 +4,7 @@ node_js:
- "0.6"
- "0.8"
- "0.10"
- "0.11"
before_script:
- rake prepare
-66
View File
@@ -1,66 +0,0 @@
# faye-redis [![Build Status](https://secure.travis-ci.org/faye/faye-redis-node.png)](http://travis-ci.org/faye/faye-redis-node)
This plugin provides a Redis-based backend for the [Faye](http://faye.jcoglan.com)
messaging server. It allows a single Faye service to be distributed across many
front-end web servers by storing state and routing messages through a
[Redis](http://redis.io) database server.
## Usage
Pass in the engine and any settings you need when setting up your Faye server.
```js
var faye = require('faye'),
redis = require('faye-redis'),
http = require('http');
var server = http.createServer();
var bayeux = new faye.NodeAdapter({
mount: '/',
timeout: 25,
engine: {
type: redis,
host: 'redis.example.com',
// more options
}
});
bayeux.attach(server);
server.listen(8000);
```
The full list of settings is as follows.
* <b><tt>host</tt></b> - hostname of your Redis instance
* <b><tt>port</tt></b> - port number, default is `6379`
* <b><tt>password</tt></b> - password, if `requirepass` is set
* <b><tt>database</tt></b> - number of database to use, default is `0`
* <b><tt>namespace</tt></b> - prefix applied to all keys, default is `''`
* <b><tt>socket</tt></b> - path to Unix socket if `unixsocket` is set
## License
(The MIT License)
Copyright (c) 2011-2012 James Coglan
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the 'Software'), to deal in
the Software without restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+67
View File
@@ -0,0 +1,67 @@
# faye-redis [![Build Status](https://secure.travis-ci.org/faye/faye-redis-node.png)](http://travis-ci.org/faye/faye-redis-node)
This plugin provides a Redis-based backend for the
[Faye](http://faye.jcoglan.com) messaging server. It allows a single Faye
service to be distributed across many front-end web servers by storing state
and routing messages through a [Redis](http://redis.io) database server.
## Usage
Pass in the engine and any settings you need when setting up your Faye server.
```js
var faye = require('faye'),
redis = require('faye-redis'),
http = require('http');
var server = http.createServer();
var bayeux = new faye.NodeAdapter({
mount: '/',
timeout: 25,
engine: {
type: redis,
host: 'redis.example.com',
// more options
}
});
bayeux.attach(server);
server.listen(8000);
```
The full list of settings is as follows.
* <b>`host`</b> - hostname of your Redis instance
* <b>`port`</b> - port number, default is `6379`
* <b>`password`</b> - password, if `requirepass` is set
* <b>`database`</b> - number of database to use, default is `0`
* <b>`namespace`</b> - prefix applied to all keys, default is `''`
* <b>`socket`</b> - path to Unix socket if `unixsocket` is set
## License
(The MIT License)
Copyright (c) 2011-2013 James Coglan
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the 'Software'), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
+1 -1
View File
@@ -150,7 +150,7 @@ Engine.prototype = {
self._redis.publish(self._ns + '/notifications', clientId);
self.clientExists(clientId, function(exists) {
if (!exists) this._redis.del(queue);
if (!exists) self._redis.del(queue);
});
});
};
+1 -1
View File
@@ -4,7 +4,7 @@
, "author" : "James Coglan <jcoglan@gmail.com> (http://jcoglan.com/)"
, "keywords" : ["pubsub", "bayeux"]
, "version" : "0.1.2"
, "version" : "0.1.3"
, "engines" : {"node": ">=0.4.0"}
, "main" : "./faye-redis"
, "dependencies" : {"redis": ""}