5

I'm using the Node.js module node_redis:

var data = [ {'name':'matt', 'id':'333' } , {'name':'Jessica','id':'492'} ] ;

//Initialize Redis
var redis = require('redis'),
rclient = redis.createClient(settings.redis.port, settings.redis.host,{pass:settings.redis.password});
rclient.auth(settings.redis.password, function(){});
rclient.on("error", function (err) {});


//OK, insert the data into redis
rclient.set("mykey", data); 

When I do set, I get an error, why?

{ stack: [Getter/Setter],
  arguments: undefined,
  type: undefined,
  message: 'ERR wrong number of arguments for \'set\' command' }
Error: ERR wrong number of arguments for 'set' command

2 Answers 2

11

The set method expects a string as the second argument.

You could stringify your data variable, i.e.

rclient.set("mykey", JSON.stringify(data))
Sign up to request clarification or add additional context in comments.

Comments

4
  • You could encode it to JSON(JSON.stringify) and then insert it in redis. To decode you then use JSON.parse
  • Redback has some nice abstractions on top of node_redis. Hash might be what you are looking for?

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.