5

是否可以使用 ioredis for Node JS 向 Redis 发送任意命令?

例如,我正在使用新的 RediSearch 模块,并希望使用以下命令创建索引:

FT.CREATE test SCHEMA title TEXT WEIGHT 5.0

我将如何使用 ioredis 发送此命令?

4

2 回答 2

8

这将使您到达那里,尽管不确定响应编码:

var 
    Redis = require('ioredis'),
    redis = new Redis('redis://:[yourpassword]@127.0.0.1');

redis.sendCommand(
    new Redis.Command(
        'FT.CREATE',
        ['test','SCHEMA','title','TEXT','WEIGHT','5.0'], 
        'utf-8', 
        function(err,value) {
          if (err) throw err;
          console.log(value.toString()); //-> 'OK'
        }
    )
);

如果你愿意搜索node_redis,这里有一个预建的 RediSearch 插件,它支持所有的 RediSearch 命令。(披露:我写的)

于 2017-08-24T20:00:35.830 回答
4

或者,这些变体也可以工作:

redis.call('M.CUSTOMCMD', ['arg1', 'arg2', 'arg3'], 
function(err, value) { /* ... */ });

// if you need batch custom/module commands
redis.multi([
  ['call', 'M.CUSTOMCMD', 'arg1', 'arg2', 'arg3'],
  ['call', 'M.OTHERCMD', 'arg-a', 'arg-b', 'arg-c', 'arg-d']
])
.exec(function(err, value) { /* ... */ });
于 2017-10-30T19:16:23.163 回答