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.
-
1I am not sure what a playback service is. What does it do? Seems to me you already have a player in the UI, and what you need on the backend is a media data retrieval service. And of course, that could easily be stateless.John Wu– John Wu2018-06-30 09:21:06 +00:00Commented Jun 30, 2018 at 9:21
-
Playback service implements the business logic to carry out various operations related to playback, like load track, play, pause, resume etc. UI doesn't have any playback logic, rather it only has the logic related to the UI display and forwarding the user input to the lower layer (playback service or browser).user2219907– user22199072018-06-30 13:26:11 +00:00Commented Jun 30, 2018 at 13:26
-
That strikes me as a very unusual separation of concerns, but if that is the architecture, the playback service must be stateful. Which is not the end of the world.John Wu– John Wu2018-06-30 19:18:51 +00:00Commented Jun 30, 2018 at 19:18
-
Well I guess you could store the state somewhere else, e.g. a signed token held by the client and passed with each request, sort of like a browser cookie.John Wu– John Wu2018-07-02 07:54:26 +00:00Commented Jul 2, 2018 at 7:54
-
It should be perfectly fine for the browser to maintain state related to the user session. Keeping the servers stateless helps with scaling out by simply adding more instances. The question is where in your architecture you intend to keep state. Usual choices are in a database or in the client. You just need a way of identifying which player you are working with. That can be looked up using the user's token.Berin Loritsch– Berin Loritsch2018-07-10 19:55:39 +00:00Commented Jul 10, 2018 at 19:55
Add a 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