Django memcached 设置位置列表有元组



刚刚在其中一个项目中看到此配置 setting.py

CACHES = {
    'default': {
        'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
        'KEY_PREFIX' : 'projectabc:',
        'LOCATION': [
                ('10.1.1.1:11211', 1),
                ('10.1.1.2:11211', 1),
                ('10.1.1.3:11211', 1),
                ('10.1.1.4:11211', 1),
        ],
    }
}

只是好奇为什么LOCATION里面有元组? 元组中的"1"是干什么用的?

在python-memcached中,location最终被发送到这个函数。这似乎是一个多余的(但有用的提醒),存在权重参数。

def set_servers(self, servers):
    """
    Set the pool of servers used by this client.
    @param servers: an array of servers.
    Servers can be passed in two forms:
        1. Strings of the form C{"host:port"}, which implies a default weight of 1.
        2. Tuples of the form C{("host:port", weight)}, where C{weight} is
        an integer weight value.
    """

相关内容

  • 没有找到相关文章

最新更新