Learning Web App Development

by Semmy Purewal

client should be redisClient

page 219

17 May 2014

Starting on page 219 there are several code snippets that declare a redisClient variable but then use the variable client in the actual code. That is an error.

All references to client in the Redis code examples should be changed to redisClient (or, the variable declaration should be changed to be just client).

Thanks to Dan Candela for reporting this!