{
  "id": 9985201,
  "title": "“Send” Is Not One Operation: Rethinking Distributed Computing #5",
  "url": "https://urgent.news/2026/09/26/send-is-not-one-operation-rethinking-distributed-computing-5",
  "topic": "tech",
  "section": "Tech",
  "published": "2026-09-26T13:24:58.000Z",
  "source": {
    "name": "Dev.to",
    "slug": "dev-to",
    "url": "https://dev.to/aaroophan/send-is-not-one-operation-rethinking-distributed-computing-5-1gc7"
  },
  "original_language": "en",
  "account": "The \"send\" verb hides multiple independent decisions in distributed computing. When Alice sends a message to Bob, several questions arise regarding the message's fate. First, how long should the message stay alive? Transient communication keeps the message only while both Alice and Bob are active, while persistent communication preserves the message until either party can handle it. Second, when is the sender allowed to continue working? Asynchronous communication lets Alice move on from sending the message, while synchronous communication requires her to wait until the message is delivered or processed by Bob. These two questions—how long the communication system preserves the message and how long the sender must wait—are not mutually exclusive and can be combined. A message can be persistent and asynchronous, like email, or persistent and synchronous, waiting for durable storage at the receiving side without requiring the receiving application to be active. Transient asynchronous communication lets the sender continue immediately while relying on temporary buffering, and transient synchronous communication can wait for receipt, delivery, or even a response. The message queue plays a crucial role in decoupling applications, allowing them to operate without needing to coordinate their calendars.",
  "summary": "The dangerous part of send(message) is how much meaning we quietly pack into the word “send.” \"Why send(message) is not one operation. Explore transient vs. persistent communication, synchronous vs. asynchronous messaging, queues, publish/subscribe, message brokers, MPI, collective communication, delivery guarantees, ordering, and the contracts hidden behind distributed communication.\" Two…",
  "key_points": [
    "Send verb hides multiple decisions in distributed computing",
    "Two key questions: message lifespan and sender's wait time",
    "Message queue decouples applications, enabling independent operation"
  ],
  "editors_take": null,
  "illustration": null,
  "coverage": {
    "outlets": 1,
    "also_reported_by": []
  },
  "ai_generated": true,
  "disclaimer": "Summaries, key points and the editor’s take are written by software from other outlets’ reporting and may contain errors — always check the linked original."
}