本文整理匯總了Python中AerospikeClientMock.AerospikeClientMock.get_many方法的典型用法代碼示例。如果您正苦於以下問題:Python AerospikeClientMock.get_many方法的具體用法?Python AerospikeClientMock.get_many怎麽用?Python AerospikeClientMock.get_many使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類AerospikeClientMock.AerospikeClientMock
的用法示例。
在下文中一共展示了AerospikeClientMock.get_many方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_get_many
# 需要導入模塊: from AerospikeClientMock import AerospikeClientMock [as 別名]
# 或者: from AerospikeClientMock.AerospikeClientMock import get_many [as 別名]
def test_get_many(self):
default_ttl = 2
asm = AerospikeClientMock(default_ttl=2)
asm.put(("a", "b", 1), {"a": 1})
asm.put(("a", "b", 2), {"a": 2})
asm.put(("a", "b", 3), {"a": 3})
asm.put(("a", "b", 4), {"a": 4})
keys = [
("a", "b", 1),
("a", "b", 2),
("a", "b", 3),
("a", "b", 4),
("a", "b", 5),
]
self.assertEqual(
{
1: (
('a', 'b', 1), {'a': 1},
{'gen': 1, 'ttl': self.get_time(default_ttl)}
),
2: (
('a', 'b', 2), {'a': 2},
{'gen': 1, 'ttl': self.get_time(default_ttl)}
),
3: (
('a', 'b', 3), {'a': 3},
{'gen': 1, 'ttl': self.get_time(default_ttl)}
),
4: (
('a', 'b', 4), {'a': 4},
{'gen': 1, 'ttl': self.get_time(default_ttl)}
),
5: None
}, asm.get_many(keys))
示例2: test_get_many
# 需要導入模塊: from AerospikeClientMock import AerospikeClientMock [as 別名]
# 或者: from AerospikeClientMock.AerospikeClientMock import get_many [as 別名]
def test_get_many(self):
asm = AerospikeClientMock()
asm.put(("a", "b", 1), {"a": 1})
asm.put(("a", "b", 2), {"a": 2})
asm.put(("a", "b", 3), {"a": 3})
asm.put(("a", "b", 4), {"a": 4})
keys = [
("a", "b", 1),
("a", "b", 2),
("a", "b", 3),
("a", "b", 4),
("a", "b", 5),
]
self.assertEqual(
[
(('a', 'b', 1), {'gen': 1, 'ttl': 0}, {'a': 1}),
(('a', 'b', 2), {'gen': 1, 'ttl': 0}, {'a': 2}),
(('a', 'b', 3), {'gen': 1, 'ttl': 0}, {'a': 3}),
(('a', 'b', 4), {'gen': 1, 'ttl': 0}, {'a': 4}),
(('a', 'b', 5), None, None),
]
, asm.get_many(keys))