Skip to content

redis-developer/introducing-redis-talk

Repository files navigation

Introducing Redis, the Database that Developers Love!

Redis was named Most Loved Database in Stack Overflow's developer survey for each of the last four years. In this session, you'll discover what Redis is, why developers like it so much, and when to use its unique capabilities.

Often thought of as a cache, there's so much more to Redis. Simon Prickett will show you how to add Redis to your stack to improve performance, synchronize communications between distributed systems and even save you from writing lots of code.

We'll look at concrete use cases written in Python, JavaScript (Node.js) and Java. This introductory session is suitable for coders of all levels.

We will walk through:

Watch a video of the presentation:

  • As delivered to the Virtual Coffee community here (YouTube) - does not feature the Streams section.
  • As delivered to the CFE.dev community here (free cfe.dev account required) - does not feature the Streams section.

Presenter Bio

Simon Prickett is the Principal Developer Advocate at Redis, responsible for Redis University's online training courses and creation of other video and written content. Previously, he's worked as a software architect in the power, food, logistics, entertainment and law enforcement industries. Simon loves helping people learn about tech. He also enjoys creating gadgets that mix hardware with software, and regularly blogs and publishes videos about his latest Raspberry Pi, Arduino and Alexa projects. Simon is partial to Aeropress coffee and never misses an opportunity to say hi to new dogs.

Starting Redis

This repo includes a docker-compose.yml file that gets you an instance of Redis Stack - a distribution of Redis with commonly used modules including RediSearch pre-installed.

To use it:

$ docker-compose up -d

Then connect to Redis on localhost port 6379, for example using RedisInsight. You can also use RedisInsight directly by pointing your browser at http://localhost:8001.

When you're finished using Redis:

$ docker-compose down