[Redis] Installing Redis under Windows

Source: Internet
Author: User

One: What is Redis?

Redis is an open source API that is written in ANSI C, supports the web, can be persisted in memory, key-value databases, and provides multiple languages.

Via https://github.com/mythz/redis-windows Here you can download it directly and unzip it

Define Redis as a key-value storage system. Similar to memcached, it supports storing more value types, including string (string), list (linked list), set (set), Zset (sorted set-ordered collection), and hash (hash type). These data types support Push/pop, Add/remove, and intersection-set and difference sets, and richer operations, and these operations are atomic. Based on this, Redis supports sorting in a variety of different ways. As with memcached, data is cached in memory to ensure efficiency. The difference is that Redis periodically writes the updated data to disk or writes the modified operation to the appended record file, and Master-slave (Master-Slave) synchronization is implemented on this basis. Redis is a high-performance Key-value database. The emergence of Redis, to a large extent, compensates for the lack of memcached such key/value storage, in some cases can be a good complement to the relational database. It provides clients such as Java,c/c++,c#,php,javascript,perl,object-c,python,ruby,erlang, which is convenient to use. [1] Redis supports master-slave synchronization. Data can be synchronized from the primary server to any number of slave servers, from the server to the primary server that is associated with other slave servers. This enables Redis to perform single-layer tree replication. You can write to the data intentionally or unintentionally. Because of the full implementation of the publish/subscribe mechanism, you can subscribe to a channel and receive a complete message release record from the master server when the tree is synchronized anywhere from the database. Synchronization is helpful for the scalability and data redundancy of read operations. Redis's official address, very good remember, is Redis.io.

In the Http:/redis.io/download page, the. Window platform is not supported.

However, Microsoft Open source organization implemented an extended version,

Download installation

Via https://github.com/mythz/redis-windows Here you can download it directly and unzip it

Now I have set up a Redis folder on e-Disk (it is also possible to build on other disks). Then copy all the files below the extracted folder to the Redis folder.

Now I have set up a Redis folder on e-Disk (it is also possible to build on other disks). Then copy all the files below the extracted folder to the Redis folder.

Server-side Redis-server.exe client Redis-cli.exe

First we can now open the service view

The default port is 6379. The configuration profile is not configured so the default configuration is used.

Then open the client under the appropriate folder

The input command set test "Aehyok" is the equivalent of adding a key to Test,value to Aehyok to redis the data.

Enter get test again to retrieve "Aehyok".

[Redis] Installing Redis under Windows

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.