Kurt Griffiths
Kurt Griffiths
Pyramid is probably the next one to add. See also: #237
OK folks, in the interest of getting this over the finish line sooner rather than later, I took the liberty of trying to address the unresolved feedback. Please take another...
Seems like it is similar to the other issue, but I don't want to lose the points brought up in the above discussion.
Note that even once #1550 is solved, we will still need to document that compiling it could take a few moments, slowing down the first request (if that is how...
Hi @dstromberg, since Falcon simply exposes a WSGI callable that the server calls for each request, lifecycle management of the server process is something the framework can not influence. In...
[We should probably add something to our docs re testing with wsgiref.]
@vytas7 I think it would make sense to split this into two issues; one for critical stuff that is also quick enough to do for 2.0, the other for the...
Example code copied from Gitter and posted originally by Nateyo: ```py def __init__(self, db_engine): self.engine = db_engine session_factory = sessionmaker(bind=db_engine) self.session_registry = scoped_session(session_factory) def process_resource(self, req, resp, resource, params): req.context["session"]...
Given that there are different approaches with different tradeoffs, we should probably include 2-3 in a new recipes section in the docs, but also include a disclaimer that there are...
That's true. We'd probably have to spin up our own boxes.