├── .gitignore ├── Cheat Sheets └── All Commands.docx ├── Pipe-Scan.py ├── README.md ├── Redis Consumer Group Videos ├── Streams ├── producer1.py ├── range.py └── xread.py ├── first-example.py └── shirt-store ├── db.py ├── main.py └── p2.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diwakarsingh052/redis-fundamentals/HEAD/.gitignore -------------------------------------------------------------------------------- /Cheat Sheets/All Commands.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diwakarsingh052/redis-fundamentals/HEAD/Cheat Sheets/All Commands.docx -------------------------------------------------------------------------------- /Pipe-Scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diwakarsingh052/redis-fundamentals/HEAD/Pipe-Scan.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Redis Fundamentals 2 | -------------------------------------------------------------------------------- /Redis Consumer Group Videos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diwakarsingh052/redis-fundamentals/HEAD/Redis Consumer Group Videos -------------------------------------------------------------------------------- /Streams/producer1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diwakarsingh052/redis-fundamentals/HEAD/Streams/producer1.py -------------------------------------------------------------------------------- /Streams/range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diwakarsingh052/redis-fundamentals/HEAD/Streams/range.py -------------------------------------------------------------------------------- /Streams/xread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diwakarsingh052/redis-fundamentals/HEAD/Streams/xread.py -------------------------------------------------------------------------------- /first-example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diwakarsingh052/redis-fundamentals/HEAD/first-example.py -------------------------------------------------------------------------------- /shirt-store/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diwakarsingh052/redis-fundamentals/HEAD/shirt-store/db.py -------------------------------------------------------------------------------- /shirt-store/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diwakarsingh052/redis-fundamentals/HEAD/shirt-store/main.py -------------------------------------------------------------------------------- /shirt-store/p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diwakarsingh052/redis-fundamentals/HEAD/shirt-store/p2.py --------------------------------------------------------------------------------