安装pip3 install cachetools常见缓存分类cached. 最简单缓存, 只可以设置keyLRUCache. Least Recently Used, 可以设置maxsize. maxsize属性定义了在缓存开始淘汰旧条目之前的最大条目数TTLCache. Time To Live
安装pip3 install locust编写测试文件# locustfile.pyfrom locust import HttpUser, taskclass HelloWorldUser(HttpUser): @task def hello_world(self): s