Node.js - Redis tutorial

58,298

Solution 1

How do you use the nodejs redis library

Check out node_redis and its examples.

what are the core concepts of redis

You should look at redis data types in order to get a bigger picture of its concepts and data types.

what does all the redis functions do

Try to look at this introduction in order to better understand its commands.

Solution 2

The book Learning Node has Chapter 9 Structured Data with Node and Redis.

Solution 3

Here are the redis documentation.

And here is the nodejs documentation.

What you're using in nodejs should just be a redis-driver. So using redis in nodejs is the same as using redis in any other environment.

Share:
58,298

Related videos on Youtube

Will03uk
Author by

Will03uk

Updated on July 09, 2022

Comments

  • Will03uk
    Will03uk almost 2 years

    How do you use the node.js redis library, what are the core concepts of redis and what does all the redis functions do, e.g. hset, hget etc? Could I have some example.

    • Will03uk
      Will03uk over 12 years
      @lwburk well yes, I've found lot's auto-generated 'documentation' listing every function without explaining it's unique concept
    • Connor Leech
      Connor Leech over 10 years
      this pdf 'the little redis book' helped me openmymind.net/redis.pdf
  • vsync
    vsync almost 11 years
    the tutorial link doesn't seem to be working any longer
  • yojimbo87
    yojimbo87 almost 11 years
    It's a shame that the tutorial link is no longer working since it was one of the best tutorials in the wild. I changed it to redis data types.