Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 10a7d59898 | |||
| 002e55ae6c | |||
| 1489e32d1f | |||
| 0b70daed71 | |||
| efaed17004 |
+1
-1
@@ -2,7 +2,7 @@ language: node_js
|
||||
node_js:
|
||||
- 0.4
|
||||
- 0.6
|
||||
- 0.7
|
||||
- 0.8
|
||||
|
||||
before_script:
|
||||
- rake prepare
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
=== 0.1.1 / 2012-07-15
|
||||
|
||||
* Fix an implicit global variable leak (missing semicolon)
|
||||
|
||||
|
||||
=== 0.1.0 / 2012-02-26
|
||||
|
||||
* Initial release: Redis backend for Faye 0.8
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
# faye-redis [](http://travis-ci.org/faye/faye-redis-node)
|
||||
# faye-redis [](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
|
||||
|
||||
+1
-1
@@ -187,7 +187,7 @@ Engine.prototype = {
|
||||
_withLock: function(lockName, callback, scope) {
|
||||
var lockKey = this._ns + '/locks/' + lockName,
|
||||
currentTime = new Date().getTime(),
|
||||
expiry = currentTime + this.LOCK_TIMEOUT * 1000 + 1;
|
||||
expiry = currentTime + this.LOCK_TIMEOUT * 1000 + 1,
|
||||
self = this;
|
||||
|
||||
var releaseLock = function() {
|
||||
|
||||
+5
-5
@@ -4,7 +4,7 @@
|
||||
, "author" : "James Coglan <jcoglan@gmail.com> (http://jcoglan.com/)"
|
||||
, "keywords" : ["pubsub", "bayeux"]
|
||||
|
||||
, "version" : "0.1.0"
|
||||
, "version" : "0.1.1"
|
||||
, "engines" : {"node": ">=0.4.0"}
|
||||
, "main" : "./faye-redis"
|
||||
, "dependencies" : {"hiredis": "", "redis": ""}
|
||||
@@ -14,13 +14,13 @@
|
||||
|
||||
, "bugs" : "http://github.com/faye/faye-redis-node/issues"
|
||||
|
||||
, "licenses" : [ { "type" : "MIT"
|
||||
, "url" : "http://www.opensource.org/licenses/mit-license.php"
|
||||
, "licenses" : [ { "type" : "MIT"
|
||||
, "url" : "http://www.opensource.org/licenses/mit-license.php"
|
||||
}
|
||||
]
|
||||
|
||||
, "repositories" : [ { "type" : "git"
|
||||
, "url" : "git://github.com/faye/faye-redis-node.git"
|
||||
, "repositories" : [ { "type" : "git"
|
||||
, "url" : "git://github.com/faye/faye-redis-node.git"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user