Slave removal: remove slave from the README.
This commit is contained in:
parent
db146de086
commit
3841236074
14
README.md
14
README.md
@ -119,7 +119,7 @@ parameter (the path of the configuration file):
|
|||||||
It is possible to alter the Redis configuration by passing parameters directly
|
It is possible to alter the Redis configuration by passing parameters directly
|
||||||
as options using the command line. Examples:
|
as options using the command line. Examples:
|
||||||
|
|
||||||
% ./redis-server --port 9999 --slaveof 127.0.0.1 6379
|
% ./redis-server --port 9999 --replicaof 127.0.0.1 6379
|
||||||
% ./redis-server /etc/redis/6379.conf --loglevel debug
|
% ./redis-server /etc/redis/6379.conf --loglevel debug
|
||||||
|
|
||||||
All the options in redis.conf are also supported as options using the command
|
All the options in redis.conf are also supported as options using the command
|
||||||
@ -245,7 +245,7 @@ A few important fields in this structure are:
|
|||||||
* `server.db` is an array of Redis databases, where data is stored.
|
* `server.db` is an array of Redis databases, where data is stored.
|
||||||
* `server.commands` is the command table.
|
* `server.commands` is the command table.
|
||||||
* `server.clients` is a linked list of clients connected to the server.
|
* `server.clients` is a linked list of clients connected to the server.
|
||||||
* `server.master` is a special client, the master, if the instance is a slave.
|
* `server.master` is a special client, the master, if the instance is a replica.
|
||||||
|
|
||||||
There are tons of other fields. Most fields are commented directly inside
|
There are tons of other fields. Most fields are commented directly inside
|
||||||
the structure definition.
|
the structure definition.
|
||||||
@ -323,7 +323,7 @@ Inside server.c you can find code that handles other vital things of the Redis s
|
|||||||
networking.c
|
networking.c
|
||||||
---
|
---
|
||||||
|
|
||||||
This file defines all the I/O functions with clients, masters and slaves
|
This file defines all the I/O functions with clients, masters and replicas
|
||||||
(which in Redis are just special clients):
|
(which in Redis are just special clients):
|
||||||
|
|
||||||
* `createClient()` allocates and initializes a new client.
|
* `createClient()` allocates and initializes a new client.
|
||||||
@ -390,16 +390,16 @@ replication.c
|
|||||||
|
|
||||||
This is one of the most complex files inside Redis, it is recommended to
|
This is one of the most complex files inside Redis, it is recommended to
|
||||||
approach it only after getting a bit familiar with the rest of the code base.
|
approach it only after getting a bit familiar with the rest of the code base.
|
||||||
In this file there is the implementation of both the master and slave role
|
In this file there is the implementation of both the master and replica role
|
||||||
of Redis.
|
of Redis.
|
||||||
|
|
||||||
One of the most important functions inside this file is `replicationFeedSlaves()` that writes commands to the clients representing slave instances connected
|
One of the most important functions inside this file is `replicationFeedSlaves()` that writes commands to the clients representing replica instances connected
|
||||||
to our master, so that the slaves can get the writes performed by the clients:
|
to our master, so that the replicas can get the writes performed by the clients:
|
||||||
this way their data set will remain synchronized with the one in the master.
|
this way their data set will remain synchronized with the one in the master.
|
||||||
|
|
||||||
This file also implements both the `SYNC` and `PSYNC` commands that are
|
This file also implements both the `SYNC` and `PSYNC` commands that are
|
||||||
used in order to perform the first synchronization between masters and
|
used in order to perform the first synchronization between masters and
|
||||||
slaves, or to continue the replication after a disconnection.
|
replicas, or to continue the replication after a disconnection.
|
||||||
|
|
||||||
Other C files
|
Other C files
|
||||||
---
|
---
|
||||||
|
Loading…
x
Reference in New Issue
Block a user