Updated performance tests

This commit is contained in:
Channel Cat 2016-10-09 15:41:37 -07:00
parent 49c499f44d
commit 22cb8b858f
3 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,12 @@
# launch with
# gunicorn --workers=1 --worker-class=meinheld.gmeinheld.MeinheldWorker falcon:api
import sys
import falcon
import ujson as json
class Resource:
def on_get(self, req, resp):
resp.body = json.dumps({"test": True})
api = falcon.API()
api.add_route('/', Resource())

View File

@ -0,0 +1,17 @@
# launch with
# gunicorn --workers=1 --worker-class=meinheld.gmeinheld.MeinheldWorker falcon:api
from flask import Flask
app = Flask(__name__)
from ujson import dumps
import logging
log = logging.getLogger('werkzeug')
log.setLevel(logging.ERROR)
@app.route('/')
def hello_world():
return dumps({"test": True})
if __name__ == '__main__':
import sys
app.run(port=sys.argv[-1])