15 lines
564 B
Plaintext
15 lines
564 B
Plaintext
❯ curl -X GET http://localhost:5000/ <-- microdot
|
||
{"ram": 8429568}%
|
||
❯ curl -X GET http://localhost:5000/ <-- microdot_asyncio
|
||
{"ram": 12410880}%
|
||
❯ curl -X GET http://localhost:8000/ <-- microdot_wsgi
|
||
{"ram": 9101312}%
|
||
❯ curl -X GET http://localhost:8000/ <-- microdot_asgi
|
||
{"ram": 18620416}%
|
||
❯ curl -X GET http://localhost:5000/ <-- flask app.run
|
||
{"ram":25460736}
|
||
❯ curl -X GET http://localhost:5000/ <-- flask run
|
||
{"ram":26210304}
|
||
❯ curl -X GET http://localhost:5000/ <-- quart run
|
||
{"ram":31748096}%
|