catroot

Results 18 comments of catroot

Not a proplem to play with gunicorn. App code saved as test-bottle-guv.py: ``` import bottle @bottle.route('/') def index(): return 'Hello, world!' app = bottle.default_app() ``` and server started: `gunicorn test-bottle-guv:app...

You are definitely right, decreasing load duty will improve performance. But there are not what i`m looking for. See how eventlets handles 1000 connections with gunicorn at the same bottle:...

Is there any progress with this issue? Looks like it needs very deep digging to find out where this latency comes from.

> I'll try porting the eventlet wsgi server to guv and see what happens Any success with it?

Hope, you didn't forget about trying another event loop.

Ok. Got it. Thank you for explaining index mode features. But what happens after calling .save() on code? ``` python code=Code.create(code='sample') code['value']=Value.create(value=10) print(code['value']['value']) # prints 10 code.save() print(code['value']) # prints...

>> provide the code example that reproduces the issue i've been tried to cognify my small hello world app - works fine, but with some larger project - it drops...