On Tue, Jan 17, 2006 at 06:54:57AM -0500, Paul G wrote: > it would be interesting to hear where the problem points are from > valentino, since sqlalchemy is what i'm looking at using right now and he's > obviously looked into it already. i suspect that doing unspeakable things > to the 'Unit Of Work' part of sqlalchemy might be needed to get the ORM > stuff working with twisted. thoughts?
SQLAlchemy is failry simple and little. There are only a bunch of things that run queries and you only have to be sure that those are the only things that need to run in a thread. things like the execute/fetch*/commit/select calls need to go in a separate thread, everything else can be done inthread without worries. SQLAlchemy is thread safe (it may contain bugs anyway) and it should work without problems. -- Valentino Volonghi aka Dialtone Now Running MacOSX 10.4 Blog: http://vvolonghi.blogspot.com http://weever.berlios.de
pgpFPEUJyDKCo.pgp
Description: PGP signature
_______________________________________________ Twisted-web mailing list [email protected] http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-web
