• A
    Replication: add REPLCONF CAPA EOF support. · 3e6d4d59
    antirez 提交于
    Add the concept of slaves capabilities to Redis, the slave now presents
    to the Redis master with a set of capabilities in the form:
    
        REPLCONF capa SOMECAPA capa OTHERCAPA ...
    
    This has the effect of setting slave->slave_capa with the corresponding
    SLAVE_CAPA macros that the master can test later to understand if it
    the slave will understand certain formats and protocols of the
    replication process. This makes it much simpler to introduce new
    replication capabilities in the future in a way that don't break old
    slaves or masters.
    
    This patch was designed and implemented together with Oran Agra
    (@oranagra).
    3e6d4d59
replication.c 87.5 KB