egg-bull
v1.0.0
Published
egg plugin bull
Downloads
41
Readme
egg-bull
bull plugin for egg framework
Install
$ npm i egg-bull --saveUsage
// {app_root}/config/plugin.js
exports.bull = {
enable: true,
package: 'egg-bull',
};Configuration
// {app_root}/config/config.unittest.js
exports.bull = {
default: {
redis: {
host: '127.0.0.1',
port: 6379,
}
},
clients: {
TestQueue: {topic: 'test'},
},
app: true,
agent: false
};see config/config.unittest.js for more detail.
Example
app.bull.get('TestQueue').add({ message: 'hi bull' });
app.bull.get('TestQueue').process(function(job) {
assert(job.data.message === 'hi bull');
done();
});
see bull home page for more details
Questions & Suggestions
Please open an issue here.
