|
|
|
|
|
by j-kidd
4531 days ago
|
|
With SQLAlchemy, I have done similar optimizations against mssql by changing a few lines of ORM code. Without SQLAlchemy, I imagine I'd have to change dozens of hand written SQL queries. A good ORM helps you to generate the exact SQL you need. |
|
> A good ORM helps you to generate the exact SQL you need.
Right, but sometimes it's the driver that behave badly. (One of those days when I claim to have free time I should dig deeper, do a good performance analysis.. one day...)