This repository has been archived by the owner on Apr 24, 2019. It is now read-only.
[Depsy] Upgrade dependency redis to ^2.2.4 #89
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hi!
A new version was just released of
redis
, so Depsyhas upgraded your project's dependency ranges.
Make sure that it doesn't break anything, and happy merging!
Upgraded redis to ^2.2.4
Changelog:
Version 2.2.3
Bugfixes
Version 2.2.2
Bugfixes
Version 2.2.0
The peregrino falcon is the fasted bird on earth and this is what this release is all about: Increased performance for heavy usage by up to 400% [sic!] and increased overall performance for any command as well. Please check the benchmarks in the README.md for further details.
Features
Bugfixes
If you do not rely on transactions but want to reduce the RTT you can use .batch from now on. It'll behave just the same as .multi but it does not have any transaction and therefor won't roll back any failed commands.
Both .multi and .batch are from now on going to cache the commands and release them while calling .exec.
Please consider using .batch instead of looping through a lot of commands one by one. This will significantly improve your performance.
Here are some stats compared to ioredis 1.9.1 (Lenovo T450s i7-5600U):
To conclude: we can proudly say that node_redis is very likely outperforming any other node redis client.
Known issues
Version 2.1.0
Features:
.end
. If set to true, commands fired after using .end are going to be rejected instead of being ignored. (@crispy1989)Bugfixes:
Version 2.0.1
#866 Fix argument mutation while using the array notation in combination with keys / callbacks (@BridgeAR)
Version 2.0.0
v2.0.0 - Sep 21, 2015
This is the biggest release that node_redis had since it was released in 2010. A long list of outstanding bugs has been fixed, so we are very happy to present you redis 2.0 and we highly recommend updating as soon as possible.
What's new in 2.0
Features:
err.code
property (@BridgeAR)err.code
property. (@skeggse & @BridgeAR)err.command
property for the command used (@BridgeAR)Bug fixes:
send_command
directly may no also be called without the args as stated in the README.md (@BridgeAR)Breaking changes:
.send_command
directly instead of the convenient methods likeredis.command
..errors
property instead of an array with errors.err, undefined
instead ofnull, undefined
).multi.exec
does not have a callback and an EXECABORT error occurrs, it'll emit that error instead.redis.server_info
(db0...) is from now on an object instead of an string.NodeRedis also thanks @qdb, @tobek, @cvibhagool, @frewsxcv, @davidbanham, @serv, @vitaliylag, @chrishamant, @GamingCoder and all other contributors that I may have missed for their contributions!
From now on we'll push new releases more frequently out and fix further long outstanding things and implement new features.
Version 1.0.0