- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我用这段代码测试了它:
from gevent import wsgi, monkey; monkey.patch_all()
from flask import Flask, url_for
app = Flask(__name__)
@app.route('/<int:n>')
def index(n):
for i in xrange(n):
url = url_for('index', n=i)
return url
wsgi.WSGIServer(('', 8000), app).serve_forever()
结果:
/1 每秒请求数:2721.94 [#/sec](平均值)
/10 每秒请求数:1080.16 [#/sec](平均值)
/100 每秒请求数:144.66 [#/sec](平均值)
最佳答案
确实有点慢。
好消息是时间复杂度是线性的,O(1)
。
下面是cProfile转储
如果我是 Flask 开发人员,我会看看为什么 url_for 会同时调用 urljoin
和 urlsplit
。如果我正确理解 werkzeug 代码,它会对生成的 url 执行验证。
13726316 function calls (13526316 primitive calls) in 16.918 seconds
Ordered by: standard name
ncalls tottime percall cumtime percall filename:lineno(function)
400000 0.272 0.000 0.453 0.000 <string>:8(__new__)
100000 0.120 0.000 0.140 0.000 app.py:1484(inject_url_defaults)
200000 0.762 0.000 1.052 0.000 datastructures.py:316(__init__)
100000 0.132 0.000 0.395 0.000 globals.py:16(_lookup_object)
100000 0.913 0.000 16.996 0.000 helpers.py:250(url_for)
300000 0.527 0.000 0.846 0.000 local.py:156(top)
100000 0.136 0.000 0.645 0.000 local.py:289(_get_current_object)
100000 0.112 0.000 0.901 0.000 local.py:333(__getattr__)
300000 0.264 0.000 0.320 0.000 local.py:66(__getattr__)
200000 0.059 0.000 0.059 0.000 routing.py:1199(update)
200000 0.147 0.000 0.147 0.000 routing.py:1455(get_host)
400000/200000 0.802 0.000 6.297 0.000 routing.py:1520(_partial_build)
200000 1.791 0.000 14.382 0.000 routing.py:1541(build)
400000 0.153 0.000 0.153 0.000 routing.py:1601(<genexpr>)
200000 1.830 0.000 5.181 0.000 routing.py:701(build)
200000 0.275 0.000 0.275 0.000 routing.py:743(suitable_for)
200000 0.256 0.000 0.256 0.000 routing.py:928(to_url)
400000 0.935 0.000 2.816 0.000 urlparse.py:128(urlparse)
400000 1.010 0.000 1.428 0.000 urlparse.py:159(urlsplit)
200000 0.175 0.000 0.274 0.000 urlparse.py:214(urlunparse)
200000 0.099 0.000 0.099 0.000 urlparse.py:224(urlunsplit)
200000 1.961 0.000 5.637 0.000 urlparse.py:242(urljoin)
5263 0.004 0.000 0.019 0.000 urlparse.py:62(clear_cache)
400000 0.483 0.000 0.783 0.000 urls.py:36(_quote)
400000 0.509 0.000 1.534 0.000 urls.py:369(url_quote)
100000 0.068 0.000 0.068 0.000 wrappers.py:85(blueprint)
505263 0.235 0.000 0.235 0.000 {built-in method __new__ of type object at 0x10d044248}
200000 0.101 0.000 0.169 0.000 {getattr}
100000 0.114 0.000 0.114 0.000 {hasattr}
2000000 0.642 0.000 0.642 0.000 {isinstance}
505263 0.073 0.000 0.073 0.000 {len}
200000 0.041 0.000 0.041 0.000 {method 'add' of 'set' objects}
600000 0.127 0.000 0.127 0.000 {method 'append' of 'list' objects}
5263 0.015 0.000 0.015 0.000 {method 'clear' of 'dict' objects}
1 0.000 0.000 0.000 0.000 {method 'disable' of '_lsprof.Profiler' objects}
5263 0.003 0.000 0.003 0.000 {method 'find' of 'str' objects}
100000 0.072 0.000 0.072 0.000 {method 'find' of 'unicode' objects}
700000 0.231 0.000 0.231 0.000 {method 'get' of 'dict' objects}
400000 0.105 0.000 0.105 0.000 {method 'iteritems' of 'dict' objects}
200000 0.116 0.000 0.116 0.000 {method 'join' of 'str' objects}
200000 0.157 0.000 0.157 0.000 {method 'join' of 'unicode' objects}
200000 0.134 0.000 0.134 0.000 {method 'lstrip' of 'unicode' objects}
300000 0.052 0.000 0.052 0.000 {method 'pop' of 'dict' objects}
200000 0.079 0.000 0.079 0.000 {method 'remove' of 'list' objects}
400000 0.249 0.000 0.249 0.000 {method 'rstrip' of 'str' objects}
200000 0.183 0.000 0.183 0.000 {method 'split' of 'str' objects}
400000 0.339 0.000 0.339 0.000 {method 'split' of 'unicode' objects}
300000 0.056 0.000 0.056 0.000 {thread.get_ident}
我有 2-3 个实用的解决方案:
如果您有带数字 ID 的 RESTful API,最后一个选项可能如下所示:
datum_url_template = url_for("datum", n=999)
def url_for_datum(n):
return datum_url_template.replace("999", str(n))
foobar_url_template = url_for("foobar", n=777)
def url_for_foobar(n):
return foobar_url_template.replace("777", str(n))
关于python - 为什么 flask url_for 太慢,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16713644/
我用 cudaMemcpy()一次将 1GB 的数据精确复制到设备。这需要 5.9 秒。反之则需要 5.1 秒。这是正常的吗?函数本身在复制之前有这么多开销吗? 理论上,PCIe 总线的吞吐量至少应为
我正在尝试读取图像的大小并在其高度大于 150 时调整其边距。但是在运行这段代码时,我总是在控制台中得到一个“0”: var coverImg; coverImg =
我正在开发一个 iPhone 应用程序,其中包含一些标准的“相机”功能。保存到相机胶卷真的太慢了,在iPhone 4上大约需要四秒钟。有什么办法可以提高速度吗? 如果您查看默认的 iPhone 相
我创建了一个将图像转换为灰度的类。但它的工作速度太慢了。有没有办法让它运行得更快? 这是我的类(class): @implementation PixelProcessing SYNTHESIZE_S
我使用以下代码,结果是正确的,但 gethostbyaddr 需要大约 30 秒。 function IPAddrToName(IPAddr: string): string; var So
我有以下案例, public class Test { private static final int MAX_NUMBER = 10_00_00; public static vo
我已经正确添加了所有必需的 JARS: Ucanaccess 3.0.4 commons-lang-2.6 commons-logging-1.1.1 hsqldbd jackcess-2.1.3 我
我为特定功能构建了一个多处理密码破解程序(使用单词列表),与使用单个进程相比,它减少了一半的时间。 最初的问题是,它会向您显示破解的密码并终止工作人员,但剩余的工作人员将继续工作,直到他们用完可哈希的
我在我的一个 JSP 中引入了 Sencha 网格。本地 sencha 相当快,但在外部服务器上它太慢了。 我在这里按照部署说明进行操作 http://docs.sencha.com/ext-js/4
我的查询加载时间有很大问题。在这种情况下,我需要 hg_ft_won 列(表:值)中的值,用于 home_team_id 和 away_team_id(表:匹配)。 它确实可以正常工作。加载只需要很长
我现在正在学习不同类型的排序,我发现,从某个点开始,我的快速排序算法根本无法快速工作。 这是我的代码: class QuickSort { // partitioning arr
为什么要模式 [0123]123456|98765 比在 Java 中执行 [0123]123456 然后 98765 慢两倍?所以单独搜索它们比用 OR 执行更快。有人有解释吗? UPD 查看带有结
我有带 Assets 的 Android 应用程序。它们包含 20,000 多个文件,其中大部分是简单的文本或 png 文件,分为不同的文件夹和子文件夹。1 个单个文件的最大大小为 500kb,其中
您好,我在查询中添加了 GROUP_CONCAT 函数,该函数终止了我的查询:/。我的查询是: SELECT u.username,a.user_id,a.id,a.text,a.lang as fr
我正在寻找优化查询的想法。 目前,我有一个 4M 行的表,我只想检索引用的最后 1000 行: SELECT * FROM customers_material_events WHERE refere
我在我的应用程序中使用 NSURLConnection,我在其中扫描条形码,通过 NSURLConnection 发送 XML,Java 服务向我发回 XML。我的问题是,使用 Wifi 时,响应时间
当我运行以下程序时,执行大约需要 7 到 8 分钟。我真的不确定我哪里弄错了,因为这个程序执行起来要花很多时间。 public class Test { public stat
我正在使用 NSFetchResultsController 从数据库中接收项目(有 80.000 个项目)。 这是我的谓词:@"(desc CONTAINS[cd] %@)", [any text]
我在 x_data 中有一个 3x2000 numpy 数组,在 y_data 中有一个 1x2000 numpy 数组,我将其传递给此函数 regress 以给我一条回归线。它工作正常。问题是我正在
我正在做一个项目,我需要改变图像的亮度和对比度,它是亮度而不是亮度。所以我一开始的代码是 for (int y = 0; y (y, x); // read pixel (0,0)
我是一名优秀的程序员,十分优秀!