Skip to content

Instantly share code, notes, and snippets.

@wilmoore
Last active December 9, 2024 05:12
Show Gist options
  • Select an option

  • Save wilmoore/1ed81c7fdea444fe71072e599a740f33 to your computer and use it in GitHub Desktop.

Select an option

Save wilmoore/1ed81c7fdea444fe71072e599a740f33 to your computer and use it in GitHub Desktop.
Software Engineering :: Database :: Redis :: About :: Redis and Its Data Structures

Software Engineering :: Database :: Redis :: About :: Redis and Its Data Structures

⪼ Made with 💜 by Polyglot.

related

Redis is a distributed in-memory database. It stores the data in a key-value format. Instead of storing data on a hard disk, it stores data in RAM, which makes it much faster. It has many use cases like Caching, Messaging, and Queue, session storage, Real-Time Data analysis. But here we are going to discuss just Cache. Caches are used and accessed in many different ways, but there are two fundamental types of patterns for how caches are used.

image


Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment