當前位置: 首頁>>代碼示例>>Python>>正文


Python NodeManager.keyslot方法代碼示例

本文整理匯總了Python中rediscluster.nodemanager.NodeManager.keyslot方法的典型用法代碼示例。如果您正苦於以下問題:Python NodeManager.keyslot方法的具體用法?Python NodeManager.keyslot怎麽用?Python NodeManager.keyslot使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在rediscluster.nodemanager.NodeManager的用法示例。


在下文中一共展示了NodeManager.keyslot方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_keyslot

# 需要導入模塊: from rediscluster.nodemanager import NodeManager [as 別名]
# 或者: from rediscluster.nodemanager.NodeManager import keyslot [as 別名]
def test_keyslot():
    """
    Test that method will compute correct key in all supported cases
    """
    n = NodeManager([{}])

    assert n.keyslot("foo") == 12182
    assert n.keyslot("{foo}bar") == 12182
    assert n.keyslot("{foo}") == 12182
    assert n.keyslot(1337) == 4314
開發者ID:huangfupeng,項目名稱:redis-py-cluster,代碼行數:12,代碼來源:test_node_manager.py

示例2: test_keyslot

# 需要導入模塊: from rediscluster.nodemanager import NodeManager [as 別名]
# 或者: from rediscluster.nodemanager.NodeManager import keyslot [as 別名]
def test_keyslot():
    """
    Test that method will compute correct key in all supported cases
    """
    n = NodeManager([{}])

    assert n.keyslot("foo") == 12182
    assert n.keyslot("{foo}bar") == 12182
    assert n.keyslot("{foo}") == 12182
    assert n.keyslot(1337) == 4314

    assert n.keyslot(125) == n.keyslot(b"125")
    assert n.keyslot(125) == n.keyslot("\x31\x32\x35")
    assert n.keyslot("大獎") == n.keyslot(b"\xe5\xa4\xa7\xe5\xa5\x96")
    assert n.keyslot(u"大獎") == n.keyslot(b"\xe5\xa4\xa7\xe5\xa5\x96")
    assert n.keyslot(1337.1234) == n.keyslot("1337.1234")
    assert n.keyslot(1337) == n.keyslot("1337")
    assert n.keyslot(b"abc") == n.keyslot("abc")
    assert n.keyslot("abc") == n.keyslot(unicode("abc"))
    assert n.keyslot(unicode("abc")) == n.keyslot(b"abc")
開發者ID:Grokzen,項目名稱:redis-py-cluster,代碼行數:22,代碼來源:test_node_manager.py


注:本文中的rediscluster.nodemanager.NodeManager.keyslot方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。