Redis Crash Course 2021 For Beginners

preview_player
Показать описание
In this crash course, you will get the basic fundamentals of Redis, its advantages, the supported data types and some of the useful commands to use on the Redis client terminal.
Also, how to install it on your system (Windows OS) and how to get it running.

Index 📝
--------------
00:00 Introduction
00:32 Presentation
03:25 Install Redis (Windows OS)
07:14 Running Redis Server and Client
07:34 Commands and Datatypes

Рекомендации по теме
Комментарии
Автор

Thanks for this video. After the installation, redis-server was already running in the background. So the redis-server command was throwing an error. Just in case anyone faces the same challenge. It took me a while to figure it out

zenasawuku
Автор

Very good course, thanks a lot for the effort, Bek

MounirSMalak
Автор

Is there a way or a demo to show python and redis work together ?

lauranalo
Автор

After I ran the msi file, a folder with a bunch of files did not appear. All that appeared was a folder in program files, but even that was different from what you showed.

ciberedev
Автор

@7:28 i'm using linux and i was trying the same but why i'm not able to start redis-server and redis-cli simultaneously..

In terminal
when i just write redis-server :
(base) vy:/$ redis-server
24618:C 11 Apr 2022 15:15:28.841 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
24618:C 11 Apr 2022 15:15:28.841 # Redis version=5.0.7, bits=64, modified=0, pid=24618, just started
24618:C 11 Apr 2022 15:15:28.841 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf
24618:M 11 Apr 2022 15:15:28.841 * Increased maximum number of open files to 10032 (it was originally set to 1024).
24618:M 11 Apr 2022 15:15:28.842 # Could not create server TCP listening socket *:6379: bind: Address already in use

and when i write redis-cli. it is working fine..
(base) vy/$ redis-cli
127.0.0.1:6379>


and i'm not able to perfom redis-stack data types in redis-cli
(base) vy:/$ redis-cli
127.0.0.1:6379> JSON.SET doc $ '{"a":2}'
(error) ERR unknown command `JSON.SET`, with args beginning with: `doc`, `$`, `{"a":2}`,
127.0.0.1:6379>


someone help me out. ASAP

thank you :-)

gouthamboine