You are not logged in. Your edit will be placed in a queue until it is peer reviewed.
We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.
Required fields*
- 2It makes less work for them, otherwise they have to support the data request both from the WebSocket and from the web API. I don't think it would necessarily be difficult to set it up to use a common request and response format, but the effort level isn't zero.Craig– Craig2024-06-13 19:24:54 +00:00Commented Jun 13, 2024 at 19:24
- 1@Craig I am afraid I don't understand. It would be less work for them to send notifications with the id's of changed items, and then to support separate api returning data represented by those id's? The complexity of the solution was not mentioned, only performance concerns.helloFromTheOtherSide– helloFromTheOtherSide2024-06-13 20:00:01 +00:00Commented Jun 13, 2024 at 20:00
- 1Rest is easier to use out of the box. You may end up creating something similar to rest using web sockets.Ccm– Ccm2024-06-13 20:35:53 +00:00Commented Jun 13, 2024 at 20:35
- When Web sockets are used for client notifications only, and REST/Http for data transfer only, it sounds to me there will be a clear separation of concerns, no redundancy. So why not give it a try?Doc Brown– Doc Brown2024-06-14 04:23:31 +00:00Commented Jun 14, 2024 at 4:23
- 1More complicated WebSocket use cases are difficult to do well. Suddenly you have to think about things like errors and content types and caching. This often ends with the WebSocket turning into a custom RPC protocol with some HTTP-ish features. Unless latency is really important, making a separate request using HTTP is going to be much easier for everyone involved. Sending change notifications (without content) is also a common pubsub pattern where bandwidth is constrained or where the full content might not always be needed.amon– amon2024-06-14 15:42:27 +00:00Commented Jun 14, 2024 at 15:42
| Show 1 more comment
How to Edit
- Correct minor typos or mistakes
- Clarify meaning without changing it
- Add related resources or links
- Always respect the author’s intent
- Don’t use edits to reply to the author
How to Format
- create code fences with backticks ` or tildes ~ ```
like so
``` - add language identifier to highlight code ```python
def function(foo):
print(foo)
``` - put returns between paragraphs
- for linebreak add 2 spaces at end
- _italic_ or **bold**
- indent code by 4 spaces
- backtick escapes
`like _so_` - quote by placing > at start of line
- to make links (use https whenever possible) <https://example.com>[example](https://example.com)<a href="https://example.com">example</a>
How to Tag
A tag is a keyword or label that categorizes your question with other, similar questions. Choose one or more (up to 5) tags that will help answerers to find and interpret your question.
- complete the sentence: my question is about...
- use tags that describe things or concepts that are essential, not incidental to your question
- favor using existing popular tags
- read the descriptions that appear below the tag
If your question is primarily about a topic for which you can't find a tag:
- combine multiple words into single-words with hyphens (e.g. design-patterns), up to a maximum of 35 characters
- creating new tags is a privilege; if you can't yet create a tag you need, then post this question without it, then ask the community to create it for you