• 17 Posts
  • 842 Comments
Joined 2 years ago
cake
Cake day: June 16th, 2023

help-circle


  • don’t know a lot about fastcgi, but looking it up it seems like it also keeps a persistent process running to avoid execution overhead

    More of less, the good thing about PHP + fastcgi is that it keeps a configure amount of minimum persistent processes (plus a dynamic number) to avoid execution overhead like you said… now there’s an important detail, PHP processes are generic, meaning if you’ve 50 apps hosted in your server they can all be served with just one persistent process. No need to spin up 50 processes for each app like with node/go etc.

    Supervisors shutting down containers/processes are good, but starting up is slow compared to the single PHP idle process ready to go for any app. :)



  • TCB13@lemmy.worldtoSelfhosted@lemmy.worldApparent issues with ZFS on RPi 5
    link
    fedilink
    English
    arrow-up
    6
    arrow-down
    2
    ·
    3 months ago

    It’s a Pi, what are you expecting. You just wasted a ton of money on inferior hardware with extra software issues. You could’ve just got a mini pc with 2 nvme slots instead for half the price and add a 6 port sata board for 20$ to one of those. Much cheaper, way more reliable, upgradable and ZFS actually would’ve work as you expect.


  • TCB13@lemmy.worldtoSelfhosted@lemmy.worldTasks.md 3.0.0 release
    link
    fedilink
    English
    arrow-up
    6
    arrow-down
    3
    ·
    3 months ago

    I’ve said this in the past, the app is good and works fine but it lacks a standalone desktop app…

    It’s a bit pointless to have it working [only] the way it does, it’s all JS already so why force people into Docker to install something that can already perfectly work as desktop app with Tauri, Electron or even something much simpler like a custom build C++ webview? Thanks.


  • I don’t really get this type of “media” bullshit articles. Yes, Windows is becoming progressively worse with more annoyances but you also have more simple to use tools than ever to disable those annoyances in bulk.

    For the average user is far simpler to just run W10 Privacy, CTT or some other tool to disable all the annoying Windows features than it is to move to Linux and face all the major pain points people usually have around software compatibility and missing xyz very specific that isn’t really the same thing under Linux.

    There you go, fixed the Windows problem for you in a few clicks, no need to download an entire new OS and complain afterwards.







  • TCB13@lemmy.worldtoSelfhosted@lemmy.worldHow do you document your Homelab?
    link
    fedilink
    English
    arrow-up
    1
    arrow-down
    6
    ·
    6 months ago

    If it need documentation means things are over the line when comes to complexity and I should scale down / simplify. :)

    Complexity and over-engineering are a serious problem, I really try to keep it as simple as possible so I don’t have to waste time managing it, dealing with updates and potential security issues. Simple code/infrastructure breaks less and has less potential insecure points.