Dimitris Theodorou

Results 37 comments of Dimitris Theodorou

Sharing cookies among multiple WkWebViews works fine by default (the change responsible for making this work was turning the `WKProcessPool`into a singleton shared by all WKWebViews, which happened a couple...

As I understand this, a pre-aggregated fact table can be viewed as a totally independent definition of a cube model. Its relationship with the original non-aggregated cube is a single...

Imo, this project is young enough that you should push class name and API specification changes sooner (in version 2) rather than later (= closer to never).

Yes that's right. I'm merely suggesting what I think is an improvement that looks like the right abstraction to me and can avoid a hidden state solution.

This is just an SQLAlchemy session object, you can use everything documented at [SQLAlchemy's session documentation](http://docs.sqlalchemy.org/en/rel_1_0/orm/session.html), which contains a lot of examples.

Yes. Also check http://docs.sqlalchemy.org/en/rel_1_0/orm/contextual.html Btw, the `s.rollback()` you do might fail with an exception and eat up the original exception, you may want to ignore the new exception

Are you running multiprocessing within a flask request? Because if you aren't, you don't need to use flask_scoped_session at all. I'm not sure if it makes sense to use a...

I don't think SQLAlchemy's scoped_session supports multiprocessing at all. If you don't need the same database transaction that you have in your flask process to be transfered to the multiprocessing...

Thanks for the PR. I am not sure yet what the best solution for this is, I was thinking to extend the API to allow passing in a custom scopefunc...