Best of RedisMarch 2023

  1. 1
    Article
    Avatar of communityCommunity Picks·3y

    5 Tips to Speed Up Your Node.js Performance

    Node.js is known as event-driven I/O server-side JavaScript environment and single-threaded event loop based on V8 Engine ( Google’s open-source high-performance JavaScript engine) In this article, we will discuss 5 ways to make Node.JS faster and optimal in work.

  2. 2
    Article
    Avatar of communityCommunity Picks·3y

    Redis: The Precious of the Software World

    Redis is an in-memory data structure store that can be used as a database, cache, and message broker. It provides high performance, flexibility, and wide language support. Redis offers persistence options such as RDB and AOF. Scaling options include single Redis instance, Redis Sentinel, and Redis Cluster.

  3. 3
    Article
    Avatar of bytebytegoByteByteGo·3y

    From 0 to Millions: A Guide to Scaling Your App - Final Part

    As traffic continues to scale, the modern application stack will start to run into issues. As traffic grows, the combined read and write traffic could start to overwhelm the serverless database. The first place that could break is the database tier. For a read-heavy application, we should consider migrating the read load to read replicas.

  4. 4
    Article
    Avatar of thisdotThis Dot·3y

    BullMQ with ExpressJS

    Learn how to use BullMQ to implement a message queue in Node.js applications and improve performance by offloading CPU-intensive tasks.