python 两种在线计算图形统计的方法。树名称和边缘是唯一的输入。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 两种在线计算图形统计的方法。树名称和边缘是唯一的输入。相关的知识,希望对你有一定的参考价值。

conn = StrictRedis()

def online_size(sender, tree_name=None, edge=None):
    conn.incr('{0}.size'.format(tree_name))

def online_depth(sender, tree_name=None, edge=None):
    with conn.lock('{0}.depth'.format(tree_name)):
        current_depth = conn.get('{0}.depth'.format(tree_name)) or 0
        if int(current_depth) < edge.generation:
            conn.set('{0}.depth'.format(tree_name), edge.generation)

以上是关于python 两种在线计算图形统计的方法。树名称和边缘是唯一的输入。的主要内容,如果未能解决你的问题,请参考以下文章

python 分析设备日志统计在线时间

10个Python 统计报表/图表图形类库

geogebra图形计算器怎么画爱心

10┃音视频直播系统之 WebRTC 中的数据统计和绘制统计图形

【实例】用PowerQuery计算字符串中指定字符个数的两种方法

python统计文本中的单词数和print的两种写法