import React from 'react'; import useBaseUrl from '@docusaurus/useBaseUrl'; import Slider, { Settings } from 'react-slick'; function Resources() { const sliderSettings: Settings = { infinite: true, centerMode: true, centerPadding: '32.5px', speed: 500, arrows: false, dots: true, responsive: [ { breakpoint: 10000, settings: 'unslick', }, { breakpoint: 996, settings: { slidesToShow: 2, }, }, { breakpoint: 750, settings: { slidesToShow: 1, }, }, ], }; return (

Resources
& community

The latest from your favorite community to support your Redis journey

Redis Pods
Podcast

How Redis scales Groww’s investing platform to empower 10 Million+ customers

Read More
Redis Enterprise Cloud sample app architecture diagram
Blog

Serverless development with AWS Lambda and Redis Enterprise Cloud

Read More
Terminal screenshot of Python code
Video

How to write a Redis client in Python, from scratch

Read More
Join the community
); } export default Resources;