this post was submitted on 01 Sep 2023
193 points (97.5% liked)

Technology

58061 readers
31 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related content.
  3. Be excellent to each another!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, to ask if your bot can be added please contact us.
  9. Check for duplicates before posting, duplicates may be removed

Approved Bots


founded 1 year ago
MODERATORS
all 11 comments
sorted by: hot top controversial new old
[–] [email protected] 23 points 1 year ago (2 children)

I don't even want to think about programming for that

[–] [email protected] 20 points 1 year ago (1 children)

how would it be any different the io type would be abstracted away

[–] [email protected] 10 points 1 year ago (1 children)

I mean multithreading is hard

[–] [email protected] 4 points 1 year ago* (last edited 1 year ago)

Nah, it's just a steep learning curve and then you'll be naturally using a few patterns - stuff like immutable classes, have yours function take the entire context of their operation as a variable and returning in changed in the output or check-condition, process, commit-if-still valid operation - to make your life easier.

It's only hard if you keep trying to design your program using the usual design patterns.

(Also how easy or hard it is to use does depend on the programming language).

What's really unforgiving is when your processing is spread over multiple machines with comm overheads in the order of milliseconds where a seemingly fine design decision can totally tank your performance.

[–] [email protected] 14 points 1 year ago

Why are you making light of the subject?

[–] [email protected] 12 points 1 year ago (1 children)

528 threads? Sounds perfect for my Chrome tabs.

[–] [email protected] 7 points 1 year ago

Oracle / Microsoft licensing team: 👀💦

[–] [email protected] 2 points 1 year ago

But can it play doom?

[–] [email protected] 2 points 1 year ago (1 children)

I was just thinking to myself if it was possible to have more threads than 2 for each core. I guess this answers that but I didn't know you could have that many per core!

Why isn't it more common to have like 4 threads per core?

[–] [email protected] 7 points 1 year ago

Multi-threading should just really be called "intelligent scheduling." It's making more efficient use of a CPU core by scheduling multiple different lines of code to run on a core at the same time. Some bits of code take longer to run then others and don't make full use of the CPU during the time they run, so the CPU will schedule another thread/code snippet to run in that gap of downtime.

I'm certain someone will correct me and add clarity to this explanation, of course.