本文整理汇总了Python中addok.db.DB.scan_iter方法的典型用法代码示例。如果您正苦于以下问题:Python DB.scan_iter方法的具体用法?Python DB.scan_iter怎么用?Python DB.scan_iter使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类addok.db.DB
的用法示例。
在下文中一共展示了DB.scan_iter方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: create_edge_ngrams
# 需要导入模块: from addok.db import DB [as 别名]
# 或者: from addok.db.DB import scan_iter [as 别名]
def create_edge_ngrams(*args):
start = time.time()
pool = Pool()
count = 0
chunk = []
for key in DB.scan_iter(match='w|*'):
count += 1
chunk.append(key)
if count % 10000 == 0:
pool.map(index_ngram_key, chunk)
print("Done", count, time.time() - start)
chunk = []
if chunk:
pool.map(index_ngram_key, chunk)
pool.close()
pool.join()
print('Done', count, 'in', time.time() - start)
示例2: create_edge_ngrams
# 需要导入模块: from addok.db import DB [as 别名]
# 或者: from addok.db.DB import scan_iter [as 别名]
def create_edge_ngrams(*args):
parallelize(index_ngram_key, DB.scan_iter(match='w|*'),
prefix="Computing ngrams", throttle=1000)