1
00:00:01,560 --> 00:00:07,860
So in this session we are going to discuss about the easiest way to start working on Redis. OK if

2
00:00:07,860 --> 00:00:14,530
you do not want to do the installation and you just want to start doing some development and practicing

3
00:00:14,530 --> 00:00:16,030
some of the Redis commands.

4
00:00:16,060 --> 00:00:23,350
So the easiest way is, there is something called try.redis. You can go to that website and

5
00:00:23,350 --> 00:00:27,050
start practicing OK.

6
00:00:27,070 --> 00:00:35,190
So the way that is going to look like is this and here at the bottom you can see that this is the command

7
00:00:35,190 --> 00:00:40,190
interface where you can issue different commands and then you are going to get the result.

8
00:00:44,100 --> 00:00:46,060
okay on the same interface.

9
00:00:46,060 --> 00:00:47,490
Again there are Restrictions.

10
00:00:47,500 --> 00:00:54,430
There are  some commands which you cannot run here commands like Bench marking or commands like Flushall,

11
00:00:54,430 --> 00:00:57,380
you know, these kind of commands which cannot be done here.

12
00:00:57,400 --> 00:01:05,800
But if you want to practice various data types of Redis and you just want to start, you know, learning

13
00:01:05,800 --> 00:01:07,860
about Redis, then it is a very good Web site.

14
00:01:12,100 --> 00:01:19,240
So to go to that website if you are reading it, this article you can just click here and it will take

15
00:01:19,240 --> 00:01:25,030
you to this you know, try.redis.io or otherwise you can just type try.redis.io

16
00:01:25,030 --> 00:01:30,830
the complete address,  on your browser and it should take you to this page.

17
00:01:31,000 --> 00:01:33,920
Now here you can run the Redis commands.

18
00:01:33,970 --> 00:01:40,620
For example, I'm going to  run Set Command, which is going to allow me to type a Key Value Pair. So here

19
00:01:40,990 --> 00:01:46,960
Key is going to be Product in my case and I will type any products. So let's say its television.

20
00:01:49,910 --> 00:01:50,600
Hit enter.

21
00:01:51,020 --> 00:01:57,860
And now we get a response of okay, which means this Key which is called Product has been set to a value

22
00:01:57,860 --> 00:02:02,720
which is Television and now we want to get this value back.

23
00:02:02,720 --> 00:02:08,350
So we type Get and followed with the Key Name, which is Product and hit enter.

24
00:02:08,360 --> 00:02:11,400
Now you see you got the Value back. Okay.

25
00:02:11,420 --> 00:02:20,480
So if you do not have a Linux  machine or you do not want to install this software on your system for

26
00:02:20,570 --> 00:02:25,910
whatever, you know, reasons maybe you have Security Enabled or maybe there are some restrictions or maybe you are

27
00:02:25,910 --> 00:02:33,950
practicing on a, you know, office laptop which doesn't allow any software to be installed or any Third

28
00:02:33,950 --> 00:02:38,800
Party Software to be running, then you can just navigate to this website and start practicing Redis.

29
00:02:40,820 --> 00:02:47,440
Now commands like Flushall, if you hit it, it is just going to say that it doesn't recognize that commands.

30
00:02:47,450 --> 00:02:49,720
So basically these commands have been restricted.
