Redis Learning Notes

Source: Internet
Author: User

Installation

  Install on Windows

: Https://github.com/dmajkic/redis/downloads.

Open a CMD window using the CD command to switch directories to C:\redis run redis-server.exe redis.conf .

If you want to be convenient, you can add the path of Redis to the environment variables of the system, so as to save the path, the back of the redis.conf can be omitted, if omitted, will enable the default, this time another cmd window, the original do not close, otherwise you will not be able to access the server.

Switch to the Redis directory to run the redis-cli.exe-h 127.0.0.1-p 6379 .

Set the key-value pair set MyKey ABC

Remove key value pair get MyKey

Install on Linux

    : http://redis.io/download, download latest document version

wget http://download.redis.io/releases/redis-2.8.17.tar.gz
Tar xzf redis-2.8.17.tar.gz
CD redis-2.8.17
Make

After make the redis-2.8.17 directory will appear under the compiled Redis service program Redis-server, as well as the client program for testing REDIS-CLI, two programs located in the installation directory SRC directory

CD src
./redis-server

Note this way of starting Redis is using the default configuration. You can also tell Redis to start with the following command using the specified configuration file through the startup parameters.

CD src
./redis-server redis.conf

Redis.conf is a default configuration file. We can use our own configuration files as needed. Once the Redis service process is started, you can use the test client program REDIS-CLI to interact with the Redis service

CD src
./redis-cli
Redis> set Foo Bar
Ok
Redis> get foo
"Bar"

Redis Learning Notes

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.