Changelog ========= ## v.2.x.x - xx Nov, 2015 Bugfixes - Fixed js parser handling big values slow ([@BridgeAR](https://github.com/BridgeAR)) - The speed is now on par with the hiredis parser. ## v.2.3.1 - 18 Nov, 2015 Bugfixes - Fixed saving buffers with charsets other than utf-8 while using multi ([@BridgeAR](https://github.com/BridgeAR)) - Fixed js parser handling big values very slow ([@BridgeAR](https://github.com/BridgeAR)) - The speed is up to ~500% faster than before but still up to ~50% slower than the hiredis parser. ## v.2.3.0 - 30 Oct, 2015 Features - Improve speed further for: ([@BridgeAR](https://github.com/BridgeAR)) - saving big strings (up to +300%) - using .multi / .batch (up to +50% / on Node.js 0.10.x +300%) - saving small buffers - Increased coverage to 99% ([@BridgeAR](https://github.com/BridgeAR)) - Refactored manual backpressure control ([@BridgeAR](https://github.com/BridgeAR)) - Removed the high water mark and low water mark. Such a mechanism should be implemented by a user instead - The `drain` event is from now on only emitted if the stream really had to buffer - Reduced the default connect_timeout to be one hour instead of 24h ([@BridgeAR](https://github.com/BridgeAR)) - Added .path to redis.createClient(options); ([@BridgeAR](https://github.com/BridgeAR)) - Ignore info command, if not available on server ([@ivanB1975](https://github.com/ivanB1975)) Bugfixes - Fixed a js parser error that could result in a timeout ([@BridgeAR](https://github.com/BridgeAR)) - Fixed .multi / .batch used with Node.js 0.10.x not working properly after a reconnect ([@BridgeAR](https://github.com/BridgeAR)) - Fixed fired but not yet returned commands not being rejected after a connection loss ([@BridgeAR](https://github.com/BridgeAR)) - Fixed connect_timeout not respected if no connection has ever been established ([@gagle](https://github.com/gagle) & [@benjie](https://github.com/benjie)) - Fixed return_buffers in pub sub mode ([@komachi](https://github.com/komachi)) ## v.2.2.5 - 18 Oct, 2015 Bugfixes - Fixed undefined options passed to a new instance not accepted (possible with individual .createClient functions) ([@BridgeAR](https://github.com/BridgeAR)) ## v.2.2.4 - 17 Oct, 2015 Bugfixes - Fixed unspecific error message for unresolvable commands ([@BridgeAR](https://github.com/BridgeAR)) - Fixed not allowed command error in pubsub mode not being returned in a provided callback ([@BridgeAR](https://github.com/BridgeAR)) - Fixed to many commands forbidden in pub sub mode ([@BridgeAR](https://github.com/BridgeAR)) - Fixed mutation of the arguments array passed to .multi / .batch constructor ([@BridgeAR](https://github.com/BridgeAR)) - Fixed mutation of the options object passed to createClient ([@BridgeAR](https://github.com/BridgeAR)) - Fixed error callback in .multi not called if connection in broken mode ([@BridgeAR](https://github.com/BridgeAR)) ## v.2.2.3 - 14 Oct, 2015 Bugfixes - Fixed multi not being executed on Node 0.10.x if node_redis not yet ready ([@BridgeAR](https://github.com/BridgeAR)) ## v.2.2.2 - 14 Oct, 2015 Bugfixes - Fixed regular commands not being executed after a .multi until .exec was called ([@BridgeAR](https://github.com/BridgeAR)) ## v.2.2.1 - 12 Oct, 2015 No code change ## v.2.2.0 - 12 Oct, 2015 - The peregrino falcon 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](README.md) for further details. Features - Added rename_commands options to handle renamed commands from the redis config ([@digmxl](https://github.com/digmxl) & [@BridgeAR](https://github.com/BridgeAR)) - Added disable_resubscribing option to prevent a client from resubscribing after reconnecting ([@BridgeAR](https://github.com/BridgeAR)) - Increased performance ([@BridgeAR](https://github.com/BridgeAR)) - exchanging built in queue with [@petkaantonov](https://github.com/petkaantonov)'s [double-ended queue](https://github.com/petkaantonov/deque) - prevent polymorphism - optimize statements - Added *.batch* command, similar to .multi but without transaction ([@BridgeAR](https://github.com/BridgeAR)) - Improved pipelining to minimize the [RTT](http://redis.io/topics/pipelining) further ([@BridgeAR](https://github.com/BridgeAR)) Bugfixes - Fixed a javascript parser regression introduced in 2.0 that could result in timeouts on high load. ([@BridgeAR](https://github.com/BridgeAR)) - I was not able to write a regression test for this, since the error seems to only occur under heavy load with special conditions. So please have a look for timeouts with the js parser, if you use it and report all issues and switch to the hiredis parser in the meanwhile. If you're able to come up with a reproducable test case, this would be even better :) - Fixed should_buffer boolean for .exec, .select and .auth commands not being returned and fix a couple special conditions ([@BridgeAR](https://github.com/BridgeAR)) 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): simple set 82,496 op/s » ioredis 112,617 op/s » node_redis simple get 82,015 op/s » ioredis 105,701 op/s » node_redis simple get with pipeline 10,233 op/s » ioredis 26,541 op/s » node_redis (using .batch) lrange 100 7,321 op/s » ioredis 26,155 op/s » node_redis publish 90,524 op/s » ioredis 112,823 op/s » node_redis subscribe 43,783 op/s » ioredis 61,889 op/s » node_redis To conclude: we can proudly say that node_redis is very likely outperforming any other node redis client. Known issues - The pub sub system has some flaws and those will be addressed in the next minor release ## v2.1.0 - Oct 02, 2015 Features: - Addded optional flush parameter to `.end`. If set to true, commands fired after using .end are going to be rejected instead of being ignored. (@crispy1989) - Addded: host and port can now be provided in a single options object. E.g. redis.createClient({ host: 'localhost', port: 1337, max_attempts: 5 }); (@BridgeAR) - Speedup common cases (@BridgeAR) Bugfixes: - Fix argument mutation while using the array notation with the multi constructor (@BridgeAR) - Fix multi.hmset key not being type converted if used with an object and key not being a string (@BridgeAR) - Fix parser errors not being catched properly (@BridgeAR) - Fix a crash that could occur if a redis server does not return the info command as usual #541 (@BridgeAR) - Explicitly passing undefined as a callback statement will work again. E.g. client.publish('channel', 'message', undefined); (@BridgeAR) ## v2.0.1 - Sep 24, 2015 Bugfixes: - Fix argument mutation while using the array notation in combination with keys / callbacks ([#866](.)). (@BridgeAR) ## 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 - Implemented a "connection is broken" mode if no connection could be established - node_redis no longer throws under any circumstances, preventing it from terminating applications. - Multi error handling is now working properly - Consistent command behavior including multi - Windows support - Improved performance - A lot of code cleanup - Many bug fixes - Better user support! ## Features: - Added a "redis connection is broken" mode after reaching max connection attempts / exceeding connection timeout. (@BridgeAR) - Added NODE_DEBUG=redis env to activate the debug_mode (@BridgeAR) - Added a default connection timeout of 24h instead of never timing out as a default (@BridgeAR) - Added: Network errors and other stream errors will from now on include the error code as `err.code` property (@BridgeAR) - Added: Errors thrown by redis will now include the redis error code as `err.code` property. (@skeggse & @BridgeAR) - Added: Errors thrown by node_redis will now include a `err.command` property for the command used (@BridgeAR) - Added new commands and drop support for deprecated *substr* (@BridgeAR) - Added new possibilities how to provide the command arguments (@BridgeAR) - The entries in the keyspace of the server_info is now an object instead of a string. (@SinisterLight & @BridgeAR) - Small speedup here and there (e.g. by not using .toLowerCase() anymore) (@BridgeAR) - Full windows support (@bcoe) - Increased coverage by 10% and add a lot of tests to make sure everything works as it should. We now reached 97% :-) (@BridgeAR) - Remove dead code, clean up and refactor very old chunks (@BridgeAR) - Don't flush the offline queue if reconnecting (@BridgeAR) - Emit all errors insteaf of throwing sometimes and sometimes emitting them (@BridgeAR) - *auth_pass* passwords are now checked to be a valid password (@jcppman & @BridgeAR) ## Bug fixes: - Don't kill the app anymore by randomly throwing errors sync instead of emitting them (@BridgeAR) - Don't catch user errors anymore occuring in callbacks (no try callback anymore & more fixes for the parser) (@BridgeAR) - Early garbage collection of queued items (@dohse) - Fix js parser returning errors as strings (@BridgeAR) - Do not wrap errors into other errors (@BridgeAR) - Authentication failures are now returned in the callback instead of being emitted (@BridgeAR) - Fix a memory leak on reconnect (@rahar) - Using `send_command` directly may now also be called without the args as stated in the [README.md](./README.md) (@BridgeAR) - Fix the multi.exec error handling (@BridgeAR) - Fix commands being inconsistent and behaving wrong (@BridgeAR) - Channel names with spaces are now properly resubscribed after a reconnection (@pbihler) - Do not try to reconnect after the connection timeout has been exceeded (@BridgeAR) - Ensure the execution order is observed if using .eval (@BridgeAR) - Fix commands not being rejected after calling .quit (@BridgeAR) - Fix .auth calling the callback twice if already connected (@BridgeAR) - Fix detect_buffers not working in pub sub mode and while monitoring (@BridgeAR) - Fix channel names always being strings instead of buffers while return_buffers is true (@BridgeAR) - Don't print any debug statements if not asked for (@BridgeAR) - Fix a couple small other bugs ## Breaking changes: 1. redis.send_command commands have to be lower case from now on. This does only apply if you use `.send_command` directly instead of the convenient methods like `redis.command`. 2. Error messages have changed quite a bit. If you depend on a specific wording please check your application carfully. 3. Errors are from now on always either returned if a callback is present or emitted. They won't be thrown (neither sync, nor async). 4. The Multi error handling has changed a lot! - All errors are from now on errors instead of strings (this only applied to the js parser). - If an error occurs while queueing the commands an EXECABORT error will be returned including the failed commands as `.errors` property instead of an array with errors. - If an error occurs while executing the commands and that command has a callback it'll return the error as first parameter (`err, undefined` instead of `null, undefined`). - All the errors occuring while executing the commands will stay in the result value as error instance (if you used the js parser before they would have been strings). Be aware that the transaction won't be aborted if those error occurr! - If `multi.exec` does not have a callback and an EXECABORT error occurrs, it'll emit that error instead. 5. If redis can't connect to your redis server it'll give up after a certain point of failures (either max connection attempts or connection timeout exceeded). If that is the case it'll emit an CONNECTION_BROKEN error. You'll have to initiate a new client to try again afterwards. 6. The offline queue is not flushed anymore on a reconnect. It'll stay until node_redis gives up trying to reach the server or until you close the connection. 7. Before this release node_redis catched user errors and threw them async back. This is not the case anymore! No user behavior of what so ever will be tracked or catched. 8. The keyspace of `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.
## v1.0.0 - Aug 30, 2015 * Huge issue and pull-request cleanup. Thanks Blain! (@blainsmith) * [#658](https://github.com/NodeRedis/node_redis/pull/658) Client now parses URL-format connection strings (e.g., redis://foo:pass@127.0.0.1:8080) (@kuwabarahiroshi) * [#749](https://github.com/NodeRedis/node_redis/pull/749) Fix reconnection bug when client is in monitoring mode (@danielbprice) * [#786](https://github.com/NodeRedis/node_redis/pull/786) Refactor createClient. Fixes #651 (@BridgeAR) * [#793](https://github.com/NodeRedis/node_redis/pull/793) Refactor tests and improve test coverage (@erinspice, @bcoe) * [#733](https://github.com/NodeRedis/node_redis/pull/733) Fixes detect_buffers functionality in the context of exec. Fixes #732, #263 (@raydog) * [#785](https://github.com/NodeRedis/node_redis/pull/785) Tiny speedup by using 'use strict' (@BridgeAR) * Fix extraneous error output due to pubsub tests (Mikael Kohlmyr) ## v0.12.1 - Aug 10, 2014 * Fix IPv6/IPv4 family selection in node 0.11+ (Various) ## v0.12.0 - Aug 9, 2014 * Fix unix socket support (Jack Tang) * Improve createClient argument handling (Jack Tang) ## v0.11.0 - Jul 10, 2014 * IPv6 Support. (Yann Stephan) * Revert error emitting and go back to throwing errors. (Bryce Baril) * Set socket_keepalive to prevent long-lived client timeouts. (mohit) * Correctly reset retry timer. (ouotuo) * Domains protection from bad user exit. (Jake Verbaten) * Fix reconnection socket logic to prevent misqueued entries. (Iain Proctor) ## v0.10.3 - May 22, 2014 * Update command list to match Redis 2.8.9 (Charles Feng) ## v0.10.2 - May 18, 2014 * Better binary key handling for HGETALL. (Nick Apperson) * Fix test not resetting `error` handler. (CrypticSwarm) * Fix SELECT error semantics. (Bryan English) ## v0.10.1 - February 17, 2014 * Skip plucking redis version from the INFO stream if INFO results weren't provided. (Robert Sköld) ## v0.10.0 - December 21, 2013 * Instead of throwing errors asynchronously, emit errors on client. (Bryce Baril) ## v0.9.2 - December 15, 2013 * Regenerate commands for new 2.8.x Redis commands. (Marek Ventur) * Correctly time reconnect counts when using 'auth'. (William Hockey) ## v0.9.1 - November 23, 2013 * Allow hmset to accept numeric keys. (Alex Stokes) * Fix TypeError for multiple MULTI/EXEC errors. (Kwangsu Kim) ## v0.9.0 - October 17, 2013 * Domains support. (Forrest L Norvell) ## v0.8.6 - October 2, 2013 * If error is already an Error, don't wrap it in another Error. (Mathieu M-Gosselin) * Fix retry delay logic (Ian Babrou) * Return Errors instead of strings where Errors are expected (Ian Babrou) * Add experimental `.unref()` method to RedisClient (Bryce Baril / Olivier Lalonde) * Strengthen checking of reply to prevent conflating "message" or "pmessage" fields with pub_sub replies. (Bryce Baril) ## v0.8.5 - September 26, 2013 * Add `auth_pass` option to connect and immediately authenticate (Henrik Peinar) ## v0.8.4 - June 24, 2013 Many contributed features and fixes, including: * Ignore password set if not needed. (jbergknoff) * Improved compatibility with 0.10.X for tests and client.end() (Bryce Baril) * Protect connection retries from application exceptions. (Amos Barreto) * Better exception handling for Multi/Exec (Thanasis Polychronakis) * Renamed pubsub mode to subscriber mode (Luke Plaster) * Treat SREM like SADD when passed an array (Martin Ciparelli) * Fix empty unsub/punsub TypeError (Jeff Barczewski) * Only attempt to run a callback if it one was provided (jifeng) ## v0.8.3 - April 09, 2013 Many contributed features and fixes, including: * Fix some tests for Node.js version 0.9.x+ changes (Roman Ivanilov) * Fix error when commands submitted after idle event handler (roamm) * Bypass Redis for no-op SET/SETEX commands (jifeng) * Fix HMGET + detect_buffers (Joffrey F) * Fix CLIENT LOAD functionality (Jonas Dohse) * Add percentage outputs to diff_multi_bench_output.js (Bryce Baril) * Add retry_max_delay option (Tomasz Durka) * Fix parser off-by-one errors with nested multi-bulk replies (Bryce Baril) * Prevent parser from sinking application-side exceptions (Bryce Baril) * Fix parser incorrect buffer skip when parsing multi-bulk errors (Bryce Baril) * Reverted previous change with throwing on non-string values with HMSET (David Trejo) * Fix command queue sync issue when using pubsub (Tom Leach) * Fix compatibility with two-word Redis commands (Jonas Dohse) * Add EVAL with array syntax (dmoena) * Fix tests due to Redis reply order changes in 2.6.5+ (Bryce Baril) * Added a test for the SLOWLOG command (Nitesh Sinha) * Fix SMEMBERS order dependency in test broken by Redis changes (Garrett Johnson) * Update commands for new Redis commands (David Trejo) * Prevent exception from SELECT on subscriber reconnection (roamm) ## v0.8.2 - November 11, 2012 Another version bump because 0.8.1 didn't get applied properly for some mysterious reason. Sorry about that. Changed name of "faster" parser to "javascript". ## v0.8.1 - September 11, 2012 Important bug fix for null responses (Jerry Sievert) ## v0.8.0 - September 10, 2012 Many contributed features and fixes, including: * Pure JavaScript reply parser that is usually faster than hiredis (Jerry Sievert) * Remove hiredis as optionalDependency from package.json. It still works if you want it. * Restore client state on reconnect, including select, subscribe, and monitor. (Ignacio Burgueño) * Fix idle event (Trae Robrock) * Many documentation improvements and bug fixes (David Trejo) ## v0.7.2 - April 29, 2012 Many contributed fixes. Thank you, contributors. * [GH-190] - pub/sub mode fix (Brian Noguchi) * [GH-165] - parser selection fix (TEHEK) * numerous documentation and examples updates * auth errors emit Errors instead of Strings (David Trejo) ## v0.7.1 - November 15, 2011 Fix regression in reconnect logic. Very much need automated tests for reconnection and queue logic. ## v0.7.0 - November 14, 2011 Many contributed fixes. Thanks everybody. * [GH-127] - properly re-initialize parser on reconnect * [GH-136] - handle passing undefined as callback (Ian Babrou) * [GH-139] - properly handle exceptions thrown in pub/sub event handlers (Felix Geisendörfer) * [GH-141] - detect closing state on stream error (Felix Geisendörfer) * [GH-142] - re-select database on reconnection (Jean-Hugues Pinson) * [GH-146] - add sort example (Maksim Lin) Some more goodies: * Fix bugs with node 0.6 * Performance improvements * New version of `multi_bench.js` that tests more realistic scenarios * [GH-140] - support optional callback for subscribe commands * Properly flush and error out command queue when connection fails * Initial work on reconnection thresholds ## v0.6.7 - July 30, 2011 (accidentally skipped v0.6.6) Fix and test for [GH-123] Passing an Array as as the last argument should expand as users expect. The old behavior was to coerce the arguments into Strings, which did surprising things with Arrays. ## v0.6.5 - July 6, 2011 Contributed changes: * Support SlowBuffers (Umair Siddique) * Add Multi to exports (Louis-Philippe Perron) * Fix for drain event calculation (Vladimir Dronnikov) Thanks! ## v0.6.4 - June 30, 2011 Fix bug with optional callbacks for hmset. ## v0.6.2 - June 30, 2011 Bugs fixed: * authentication retry while server is loading db (danmaz74) [GH-101] * command arguments processing issue with arrays New features: * Auto update of new commands from redis.io (Dave Hoover) * Performance improvements and backpressure controls. * Commands now return the true/false value from the underlying socket write(s). * Implement command_queue high water and low water for more better control of queueing. See `examples/backpressure_drain.js` for more information. ## v0.6.1 - June 29, 2011 Add support and tests for Redis scripting through EXEC command. Bug fix for monitor mode. (forddg) Auto update of new commands from redis.io (Dave Hoover) ## v0.6.0 - April 21, 2011 Lots of bugs fixed. * connection error did not properly trigger reconnection logic [GH-85] * client.hmget(key, [val1, val2]) was not expanding properly [GH-66] * client.quit() while in pub/sub mode would throw an error [GH-87] * client.multi(['hmset', 'key', {foo: 'bar'}]) fails [GH-92] * unsubscribe before subscribe would make things very confused [GH-88] * Add BRPOPLPUSH [GH-79] ## v0.5.11 - April 7, 2011 Added DISCARD I originally didn't think DISCARD would do anything here because of the clever MULTI interface, but somebody pointed out to me that DISCARD can be used to flush the WATCH set. ## v0.5.10 - April 6, 2011 Added HVALS ## v0.5.9 - March 14, 2011 Fix bug with empty Array arguments - Andy Ray ## v0.5.8 - March 14, 2011 Add `MONITOR` command and special monitor command reply parsing. ## v0.5.7 - February 27, 2011 Add magical auth command. Authentication is now remembered by the client and will be automatically sent to the server on every connection, including any reconnections. ## v0.5.6 - February 22, 2011 Fix bug in ready check with `return_buffers` set to `true`. Thanks to Dean Mao and Austin Chau. ## v0.5.5 - February 16, 2011 Add probe for server readiness. When a Redis server starts up, it might take a while to load the dataset into memory. During this time, the server will accept connections, but will return errors for all non-INFO commands. Now node_redis will send an INFO command whenever it connects to a server. If the info command indicates that the server is not ready, the client will keep trying until the server is ready. Once it is ready, the client will emit a "ready" event as well as the "connect" event. The client will queue up all commands sent before the server is ready, just like it did before. When the server is ready, all offline/non-ready commands will be replayed. This should be backward compatible with previous versions. To disable this ready check behavior, set `options.no_ready_check` when creating the client. As a side effect of this change, the key/val params from the info command are available as `client.server_options`. Further, the version string is decomposed into individual elements in `client.server_options.versions`. ## v0.5.4 - February 11, 2011 Fix excess memory consumption from Queue backing store. Thanks to Gustaf Sjöberg. ## v0.5.3 - February 5, 2011 Fix multi/exec error reply callback logic. Thanks to Stella Laurenzo. ## v0.5.2 - January 18, 2011 Fix bug where unhandled error replies confuse the parser. ## v0.5.1 - January 18, 2011 Fix bug where subscribe commands would not handle redis-server startup error properly. ## v0.5.0 - December 29, 2010 Some bug fixes: * An important bug fix in reconnection logic. Previously, reply callbacks would be invoked twice after a reconnect. * Changed error callback argument to be an actual Error object. New feature: * Add friendly syntax for HMSET using an object. ## v0.4.1 - December 8, 2010 Remove warning about missing hiredis. You probably do want it though. ## v0.4.0 - December 5, 2010 Support for multiple response parsers and hiredis C library from Pieter Noordhuis. Return Strings instead of Buffers by default. Empty nested mb reply bug fix. ## v0.3.9 - November 30, 2010 Fix parser bug on failed EXECs. ## v0.3.8 - November 10, 2010 Fix for null MULTI response when WATCH condition fails. ## v0.3.7 - November 9, 2010 Add "drain" and "idle" events. ## v0.3.6 - November 3, 2010 Add all known Redis commands from Redis master, even ones that are coming in 2.2 and beyond. Send a friendlier "error" event message on stream errors like connection refused / reset. ## v0.3.5 - October 21, 2010 A few bug fixes. * Fixed bug with `nil` multi-bulk reply lengths that showed up with `BLPOP` timeouts. * Only emit `end` once when connection goes away. * Fixed bug in `test.js` where driver finished before all tests completed. ## unversioned wasteland See the git history for what happened before.