本文整理汇总了Python中pykt.KyotoTycoon.head方法的典型用法代码示例。如果您正苦于以下问题:Python KyotoTycoon.head方法的具体用法?Python KyotoTycoon.head怎么用?Python KyotoTycoon.head使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pykt.KyotoTycoon
的用法示例。
在下文中一共展示了KyotoTycoon.head方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_head_utf8
# 需要导入模块: from pykt import KyotoTycoon [as 别名]
# 或者: from pykt.KyotoTycoon import head [as 别名]
def test_head_utf8():
db = KyotoTycoon()
db = db.open()
db.set("あいうえお", "かきくけこ")
ret = db.head("あいうえお")
ok_(ret == True)
db.close()
示例2: test_head
# 需要导入模块: from pykt import KyotoTycoon [as 别名]
# 或者: from pykt.KyotoTycoon import head [as 别名]
def test_head():
db = KyotoTycoon()
db = db.open()
db.set("A", "B")
ret = db.head("A")
ok_(ret == True)
db.close()
示例3: test_head_loop
# 需要导入模块: from pykt import KyotoTycoon [as 别名]
# 或者: from pykt.KyotoTycoon import head [as 别名]
def test_head_loop():
db = KyotoTycoon()
db = db.open()
db.set("A", "B")
for i in xrange(100):
ret = db.head("A")
ok_(ret == True)
db.close()
示例4: test_head_notfound
# 需要导入模块: from pykt import KyotoTycoon [as 别名]
# 或者: from pykt.KyotoTycoon import head [as 别名]
def test_head_notfound():
db = KyotoTycoon()
db = db.open()
ret = db.head("A"* 10)
ok_(ret == False)
db.close()
示例5: test_head_with_db
# 需要导入模块: from pykt import KyotoTycoon [as 别名]
# 或者: from pykt.KyotoTycoon import head [as 别名]
def test_head_with_db():
db = KyotoTycoon("test")
db = db.open()
ret = db.head("A")
ok_(ret == False)
示例6: test_err_head
# 需要导入模块: from pykt import KyotoTycoon [as 别名]
# 或者: from pykt.KyotoTycoon import head [as 别名]
def test_err_head():
db = KyotoTycoon()
ret = db.head("A")