将参数传递给 Gearman worker

将参数传递给 Gearman worker

我最近一直在研究 Gearman,并试图弄清楚如何将参数传递给在命令行上启动的 Gearman 工作程序。

例如,我可以启动一个 Gearman 工作者,它的工作是返回以下结果ls -lh

$ gearman -w -f list -- ls -lh

当 Gearman 守护进程启动后,现在可以list像这样调用 worker 函数:

$ gearman -f list < /dev/null

不过,我正在试图弄清楚如何将参数传递给list工作者函数。

答案1

相关内容