Home  >  Article  >  Database  >  How to download redis

How to download redis

步履不停
步履不停Original
2019-06-22 14:05:192558browse

How to download redis

Installation under Window

Download address:https://github.com/MSOpenTech/redis/releases.

Redis supports 32-bit and 64-bit. This needs to be selected according to the actual situation of your system platform. Here we download the Redis-x64-xxx.zip compressed package to the C drive. After decompression, rename the folder to redis.

How to download redis

Open the folder with the following content:

How to download redis

Open a cmd window using the cd command Change directory to C:\redis Run:

redis-server.exe redis.windows.conf

If you want convenience, you can add the redis path to the system environment variable, so that you don't have to enter the path again. The following redis.windows.conf can be omitted. If omitted, the default one will be enabled. After inputting, the following interface will be displayed:

How to download redis

At this time, open another cmd window. Do not close the original one, otherwise you will not be able to access the server.

Switch to the redis directory and run:

redis-cli.exe -h 127.0.0.1 -p 6379

Set the key-value pair:

set myKey abc

Remove the key-value pair:

get myKey

How to download redis

For more Redis-related technical articles, please visit the Redis Tutorial column to learn!

The above is the detailed content of How to download redis. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn