We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afe443c commit e2ed76bCopy full SHA for e2ed76b
README.md
@@ -19,6 +19,8 @@ $payload = [
19
'address' => fake()->address(),
20
];
21
22
+// Using pushRaw so the job is not serialized but sent as raw JSON
23
+// So in the Go consumer we can decode it directly without needing to unserialize it
24
$queueManager->pushRaw(json_encode($payload, JSON_THROW_ON_ERROR), 'my_queue_name');
25
```
26
0 commit comments