install redis on windows

First steps to recognize redis
   Redis is an open source, advanced key-value store solution for building high-performance, scalable web applications. The official website of Redis is: http://www.redis.io/

Redis has three main features that differentiate it from many of its competitors:
   Redis is a database that stores data entirely in memory, using disk only for persistence purposes ;
   Compared with many key-value data storage systems, Redis has relatively rich data types;
   Redis can replicate data to any number of slave servers;

Redis advantages are
  extremely fast: Redis is very fast, and can perform about 110,000 setup operations per second, 81,000 read operations per second.

  Supports rich data types: Redis supports the most data types that most developers already know such as lists, sets, sortable sets, hashes, etc.

This makes it easy to solve various problems in the application, because we know which problems are better solved using which data types.
   Operations are atomic: All Redis operations are atomic, ensuring that when two clients access the Redis server at the same time, they get the updated value (the latest value).

MultiUtility tool: Redis is a multifunctional utility that can be used in many applications such as: caching, messaging queues (Redis natively supports publish/subscribe), in applications such as: web application sessions, website page hits, etc. Temporary data; the

second step
     is to download the redis
download address https://github.com/dmajkic/redis/downloads
   
and then extract it to a directory, as shown in the figure


Description :
redis-benchmark.exe
#benchmark redis-check-aof.exe # aof
redischeck-dump.exe # dump
redis- cli.exe # Client
redis-server.exe # Server
redis.windows.conf # Configuration file

Run redis-server.exe As shown in the figure: The
installation is successful and

then run redis-cli.exe Simple test


Congratulations, you are successful!
















Guess you like

Origin http://10.200.1.11:23101/article/api/json?id=326931926&siteId=291194637