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*
-
Underestimated answer, thank you! I thought that browsing is a simple task that doesn’t benefit from multiple cores.Martian– Martian2020-07-11 18:17:34 +00:00Commented Jul 11, 2020 at 18:17
-
@AlexeiSavitsky - Well, to be honest, I'm not an expert in browser technology so I don't know how much they've actually done. I know for sure that each tab gets their own process these days. But layout calculations are pretty complicated too and drawing is done with hardware acceleration, so there certainly are opportunities for multithreading.Vilx-– Vilx-2020-07-11 18:20:57 +00:00Commented Jul 11, 2020 at 18:20
-
1+1 Multithreaded software is very common. When performance matters, a serious software developer will usually at least consider using multithreading as part of an optimization, and modern programming frameworks make it relatively easy. Also, much of today's software is web based; such software is effectively multithreaded automatically, because web servers are multithreaded. You don't need to multithread your web software (although it can sometimes help for long running operations) if your web server is already using multithreading to more efficiently serve multiple concurrent users.Jordan Rieger– Jordan Rieger2020-07-11 20:21:15 +00:00Commented Jul 11, 2020 at 20:21
-
I just checked my browser (Chrome). I have currently 1 tab open, but there are 7 chrome processes open (leftovers from previous tabs and the frame) and they each have anywhere between 6 and 32 threads. I don't know what they are used for, but it's obvious that Chrome does rely on multithreading.Vilx-– Vilx-2020-07-11 21:06:35 +00:00Commented Jul 11, 2020 at 21:06
-
Correct. It's very unlikely to run software on a single thread operating system. The reason this might not get an appropriate amount of votes is because this community is biased towards programming, where users are delegated a single thread from multiples that have been previously split.TZubiri– TZubiri2020-07-11 21:39:11 +00:00Commented Jul 11, 2020 at 21:39
|
Show 3 more comments
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