Skip to content

hmget fails when args.length > 1 #66

Description

@aeosynth
var redis = require('redis')
  , client = redis.createClient();

client.hset('hash', 'key', 'val');

client.hmget('hash', ['key'], redis.print);
client.hmget('hash', 'key', 'key', redis.print);
client.hmget('hash', ['key', 'key'], redis.print);

client.quit();

/* output:
Reply: val
Reply: val,val
Reply: 
*/

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Fields

    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions