我在ubuntu 16上遵守了gearman 1.1.18。 我正在使用带有节点库的gearman
const gearman = require('gearman');
let client = gearman("localhost", 4730, { timeout: 10000 }); // timeout in milliseconds.
// handle finished jobs
client.on('WORK_COMPLETE', function (job) {
console.log('job completed, result:', job.payload.toString());
client.close();
});
// connect to the gearman server
client.connect(function () {
client.submitJob('upper', 'Hello, World!', { background: true, 'priority': 'normal' });
});
问题是我可以连接到mysql并且还有表格,但是当我使用gearman表提交后台作业时没有填充。
有什么建议吗?