打开文件需要2秒钟以上

时间:2019-04-17 17:30:21

标签: python

我正在尝试从文件中读取第一行(仅1行)。我添加了一个计时器,此命令耗时超过2秒。这是为什么? (这是一个实时应用程序)

如何将时间减少到不到1秒?

Python 2.7

def Get_CPU_Usage():
        print "Checking CPU usage"
        start_time = time.time()
        try:
                with open("/tmp/Automation/cpu.log", 'r') as control_fd:
                        print("--- %s seconds ---" % (time.time() - start_time))
                        return str(control_fd.readline())
        except:
                return "0;0;0;0"

0 个答案:

没有答案