Node.js - Redis tutorial

How do you use the node.js redis library, what are the basic concepts of redis and what all the redis functions do, for example. hset, hget, etc.? Can i give an example.

+44
javascript redis
Apr 13 2018-11-11T00:
source share
3 answers

How do you use the nodejs redis library

Check node_redis and its examples .

what are the basic concepts of redis

You should look at redis data types to get a better understanding of its concepts and data types.

making all redis functions

Try a look at this introduction to better understand its commands .

+60
Apr 14 '11 at 9:30
source share

Learning Node has a Chapter 9 Structured Data with Node and Redis.

+8
Oct 11
source share

Here is the redis documentation .

And here is the nodejs documentation .

What you use in nodejs should just be redis-driver. Thus, using redis in nodejs is the same as using redis in any other environment.

+4
Apr 13 2018-11-11T00:
source share



All Articles