search

Home  >  Q&A  >  body text

node.js - node redis 如何连接指定数据库,默认连接0号数据库?

node redis 如何连接指定数据库,默认连接0号数据库?

大家讲道理大家讲道理2780 days ago666

reply all(2)I'll reply

  • ringa_lee

    ringa_lee2017-04-17 15:03:07

    var redis = require("redis"),
        client = redis.createClient();
        
    client.select(3, function() { /* ... */ }); 

    reply
    0
  • 巴扎黑

    巴扎黑2017-04-17 15:03:07

    This is ioredis

    reply
    0
  • Cancelreply