Detailed configuration information in the Redis configuration file

Before that, you can review some of the basic commands of
Redis : A list of eight commonly used Redis types (five commonly used types + three special types) : https://blog.csdn.net/nxw_tsp/article/details/107897580
Redis transaction commonly used commands And an example of optimistic locking through the watch command:
https://blog.csdn.net/nxw_tsp/article/details/107922864

Detailed configuration information in the Redis configuration file:

In actual work, using the default configuration of redis is far from enough, we need to do some configuration to deal with our actual program performance problems, then the following is an explanation of the configuration items in the redis.conf configuration file.

INCLUDES (including):

include .\path\to\local.conf  #可以包含多个配置文件

NETWORK:
In the actual project, we need to configure this

bind 127.0

Guess you like

Origin blog.csdn.net/nxw_tsp/article/details/107944436