Как заставить Bulljs работать с кластером Elasticache?

#node.js #redis #graphql #bull.js #elastic-cache

Вопрос:

Я пытаюсь использовать Bulljs с AWS Elasticcache redis. Как я могу настроить конфигурацию?

 const initAudioQueue = () => {
return new Promise((resolve, reject) => {
const audioQueue = new Queue(
      'cluster', {
        prefix: '{audiocluster}',
        createClient: (type, config) => new Redis.Cluster([{
          port: 6379,
          host: '127.0.0.1',
        }])
      })
   return resolve(audioQueue)
  });
 }