About 142,000 results
Open links in new tab
  1. Redis lists | Docs

    Redis lists are frequently used to: Implement stacks and queues. Build queue management for background worker systems. LPUSH adds a new element to the head of a list; RPUSH adds to the …

  2. Complete Guide to Redis Lists - GeeksforGeeks

    Nov 3, 2023 · When it comes to data structures, Redis offers a wide range of options to efficiently manage and manipulate your data and one of them is list. A list is an ordered collection of values …

  3. Redis lists - Redis Documentation

    Redis lists are implemented via Linked Lists. This means that even if you have millions of elements inside a list, the operation of adding a new element in the head or in the tail of the list is performed in …

  4. An In-Depth Guide to Redis Lists for Beginner and Expert Developers

    Dec 27, 2023 · Meet Redis lists – an ordered set structure perfect for queues, activity feeds, and other use cases. In this comprehensive 2,500+ word guide, we‘ll cover everything from basic creation to …

  5. Redis lists

    Introduction to Redis lists. Redis lists are linked lists of string values. Redis lists are frequently used to: Implement stacks and queues. Build queue management for background worker systems. LPUSH …

  6. Lists in Active-Active databases | Redis Documentation Center

    Redis lists are simply lists of strings, sorted by insertion order. It is possible to add elements to a Redis List that push new elements to the head (on the left) or to the tail (on the right) of the list.

  7. Using Redis Lists and Sets for Efficient Data Storage

    Feb 16, 2025 · Redis Lists: A Redis list is a collection of strings that can be appended, popped, and retrieved. Lists are ordered and can be used to implement stacks, queues, and more.

  8. Redis Lists - Compile N Run

    Redis Lists are one of the fundamental data structures offered by Redis. They provide a way to store and manage ordered collections of string elements.

  9. Lists in Redis

    This guide provides an in-depth look at Redis Lists, from basic commands to advanced use cases and best practices. Lists in Redis are powerful due to their simplicity and the atomic operations that Redis …

  10. Lists in Depth - Techbloomer Academy

    Redis Lists are an essential data structure, widely used for implementing queues, logs, messaging systems, and more. In this lesson, you'll gain a deep understanding of how Redis Lists work, how to …