this post was submitted on 13 Apr 2025
107 points (97.3% liked)

Selfhosted

60281 readers
574 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

Detailed Rules Post

  1. Be civil.

  2. No spam.

  3. Posts are to be related to self-hosting.

  4. Don't duplicate the full text of your blog or readme if you're providing a link.

  5. Submission headline should match the article title.

  6. No trolling.

  7. Promotion posts require active participation, with an account that is at least 30 days old. F/LOSS without a paywall has exceptions, with requirements. See the rules link for details.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 3 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] sugar_in_your_tea@sh.itjust.works 1 points 1 year ago (1 children)

Python is fine. It's not my first choice for a high-performance, real-time application though, that should be in Rust or Go.

[–] mobotsar@sh.itjust.works 1 points 1 year ago (1 children)
[–] sugar_in_your_tea@sh.itjust.works 1 points 1 year ago* (last edited 1 year ago) (1 children)

Sorry, I used "real-time" fairly loosely. I didn't mean it in the sense of a real-time OS (hard deadlines), more in the sense of "fast updates" (like a chat server). Go is great if you want very low latency in a highly concurrent system since task-switching is so lightweight.

[–] mobotsar@sh.itjust.works 2 points 1 year ago

Ah, sure. Yeah, goroutines are a well-implemented abstraction.