本文整理汇总了Python中cyclone.util.ObjectDict.scheduler_thread_pool_size方法的典型用法代码示例。如果您正苦于以下问题:Python ObjectDict.scheduler_thread_pool_size方法的具体用法?Python ObjectDict.scheduler_thread_pool_size怎么用?Python ObjectDict.scheduler_thread_pool_size使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cyclone.util.ObjectDict
的用法示例。
在下文中一共展示了ObjectDict.scheduler_thread_pool_size方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: get_db_file
# 需要导入模块: from cyclone.util import ObjectDict [as 别名]
# 或者: from cyclone.util.ObjectDict import scheduler_thread_pool_size [as 别名]
return path
def get_db_file():
root = get_root_path()
db_dir = os.path.join(root, '_gldata')
if not os.path.isdir(db_dir):
os.mkdir(db_dir)
db_file = os.path.join(db_dir, 'glbackend.db')
return db_file
main = OD()
advanced = OD()
advanced.debug = True
main.glclient_path = get_glclient_path()
if advanced.debug:
print "Serving GLClient from %s" % main.glclient_path
main.database_uri = 'sqlite:'+get_db_file()
advanced.db_thread_pool_size = 10
advanced.scheduler_thread_pool_size = 10
advanced.data_dir = os.path.join(get_root_path(), '_gldata')
advanced.submissions_dir = os.path.join(advanced.data_dir, 'submissions')
advanced.delivery_dir = os.path.join(advanced.data_dir, 'delivery')