Releases: freeall/redis-eventemitter
Releases · freeall/redis-eventemitter
Update to newest redis
Use url as connection string. Defaults removed.
- You can now use
url
property as connection string. - The default
host
andport
has been removed. redis
module has been upgraded to1.0.0
. It's still an old version ofredis
but I couldn't get the newer one to work easily
The way to use it now is
var redis = require('redis-eventemitter')({
url: 'redis://foo:[email protected]:6379'
});
but the old way still works
var redis = require('redis-eventemitter')({
host: 'some.host',
port: 6379
});