Skip to content

Releases: freeall/redis-eventemitter

Update to newest redis

28 Nov 08:32
Compare
Choose a tag to compare

Updated to newest redis version because there was a problem with version 1.0.0 where it wouldn't connect to the passed url.

Use url as connection string. Defaults removed.

25 Nov 10:54
Compare
Choose a tag to compare
  • You can now use url property as connection string.
  • The default host and port has been removed.
  • redis module has been upgraded to 1.0.0. It's still an old version of redis 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
});