2024-10-15 13:24:49 +02:00
..
2024-10-13 19:01:02 +02:00
2024-10-13 19:01:02 +02:00
2024-10-13 19:01:02 +02:00
2024-10-13 19:01:02 +02:00
2024-10-13 19:01:02 +02:00
2024-10-15 13:24:49 +02:00
2024-10-13 19:01:02 +02:00

queues

An example of using Cloudflare Workers that interact with Cloudflare Queues.

Running

Requirements

This project requires these tools to be installed globally.

  • wrangler
  • tinygo

Supported commands

make dev     # run dev server
make build   # build Go Wasm binary
make deploy # deploy worker

Interacting with the local queue

  1. Start the dev server.
make dev
  1. Send a message to the queue.
curl -v -X POST http://localhost:8787/ -d '{"message": "Hello, World!"}' -H "Content-Type: application/json"
  1. Observe the response and server logs

  2. You can pass text/plain content type to write queue message as the string or omit the Content-Type header to write queue message as byte array.