Best of ComputingSeptember 2022

  1. 1
    Article
    Avatar of communityCommunity Picks·4y

    How to Scale Application to support Millions User

    How to Scale Application to support Millions User Designing a system that supports millions of users is a process that requires continuous improvement and refinement.

  2. 2
    Article
    Avatar of gcgitconnected·4y

    7 Best Tools for Monitoring Node.js Servers.

    There are several tools available for monitoring servers, but few are designed specifically for Node.js. In this post, we will discover the 7 best of them. PM2 PM2 is a potent instrument to run Node applications, but it is also very good at maintaining and monitoring standalone applications in production servers.

  3. 3
    Article
    Avatar of honeybadgerHoneybadger·4y

    Multithreading in JavaScript with Web Workers

    Single-threaded JavaScript VM is fundamentally designed to spawn a single thread, which means that it cannot read and execute multiple instructions simultaneously. When we see a function execution hindering the following function from executing for a few seconds, wait because a singlethread is handling a blocking process.

  4. 4
    Article
    Avatar of golangGo·4y

    Go runtime: 4 years later

    The Go GC returns unneeded memory back to the operating system much more proactively, reducing excess memory consumption and the chance of out-of-memory errors. Pool, a GC-aware tool for reusing memory, has a lower latency impact and recycles memory much more effectively than before.

  5. 5
    Article
    Avatar of communityCommunity Picks·4y

    For the love of god, stop using CPU limits on Kubernetes

    Many people think you need CPU limits to prevent one pod from interfering with another pod. The trick is to just define CPU requests, with or without requests, and the same is true for CPU requests.