mirror of https://github.com/ivanch/tcc.git
updating express
This commit is contained in:
parent
9ef644702b
commit
acfd94f6ff
2
Express
2
Express
|
@ -1 +1 @@
|
||||||
Subproject commit 9916a85a0a6b101eb9b3010dc232745b1bd66d73
|
Subproject commit b85d8c503e7fa55fdf54e2bbbaa8bbc96cdf1a4f
|
|
@ -18,10 +18,10 @@ person_json = {
|
||||||
person_json = str(person_json).encode('utf-8')
|
person_json = str(person_json).encode('utf-8')
|
||||||
|
|
||||||
FRAMEWORKS = [
|
FRAMEWORKS = [
|
||||||
('Actix', 'tcc-actix', 'orange'),
|
# ('Actix', 'tcc-actix', 'orange'),
|
||||||
('ASP.NET', 'tcc-aspnet', 'blue'),
|
# ('ASP.NET', 'tcc-aspnet', 'blue'),
|
||||||
('Flask', 'tcc-flask', 'grey'),
|
# ('Flask', 'tcc-flask', 'grey'),
|
||||||
# ('Express', 'tcc-express', 'red'),
|
('Express', 'tcc-express', 'red'),
|
||||||
# ('Spring', 'tcc-spring', 'green'),
|
# ('Spring', 'tcc-spring', 'green'),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
@ -45,5 +45,5 @@ API_REQUESTS = [
|
||||||
# ('/image/load-big-image', 'GET', range(0, 500, 50), None),
|
# ('/image/load-big-image', 'GET', range(0, 500, 50), None),
|
||||||
# ('/static/big-image.png', 'GET', range(0, 500, 50), None),
|
# ('/static/big-image.png', 'GET', range(0, 500, 50), None),
|
||||||
# ('/static/nginx.html', 'GET', range(0, 30_000, 5000), None),
|
# ('/static/nginx.html', 'GET', range(0, 30_000, 5000), None),
|
||||||
('/simulation/protobuf', 'POST', range(0, 30_000, 5000), (person_proto.SerializeToString(), "application/protobuf")),
|
('/simulation/protobuf', 'POST', range(0, 30_000, 5000), (person_proto, "application/protobuf")),
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in New Issue