This repository contains samples that demonstrate best practices and general recommendations to communicate with Azure Redis Cache Service caches from various Redis client frameworks.
MIT License
69
stars
156
forks
source link
Update nodejs redistest.js for newer client version #17
Purpose
Update nodejs sample to use newer patterns for changes introduced in node-redis v4 https://github.com/redis/node-redis/blob/master/docs/v3-to-v4.md
createClient
takes a different configuration object and the returned client must be manually connected with.connect
Promise
s by default (bluebird no longer required)client
command doesn't have alist
variant sosendCommand
is used insteadPull Request Type
What kind of change does this Pull Request introduce?
Other Information