Re: [pylons-discuss] DB QueuePool limit overflow and Pyramid sub-requests

2018-04-26 Thread Jonathan Vanasco
I'm confused by wording on this, or perhaps the functionality in Pyramid. > When I set the pool_size of the engine to *N* and max_overflow

Re: [pylons-discuss] DB QueuePool limit overflow and Pyramid sub-requests

2018-04-26 Thread Michael Merickel
In general I strongly urge you to reconsider using subrequests... they are there for people to use but they have lots of drawbacks versus just calling a bunch of reusable functions. Anyway, this is how subrequests work - they are isolated. They do have an odd feature that sort of lets you merge

[pylons-discuss] DB QueuePool limit overflow and Pyramid sub-requests

2018-04-26 Thread jens . troeger
Hello, Perhaps this forum is more appropriate to ask than the SQLAlchemy group (see this same question over there ). I would like to understand the interplay between a SQLA session and a Pyramid’s subrequest