DEV Community

Discussion on: Why you should avoid ORMs (with examples in Node.js)

Collapse
 
autoferrit profile image
Shawn McElroy

I am no pro, but wouldn't database caching solve some of these issues with the timing of a DB request? I know it doesn't solve the complexity issue, but with the increased SQL complexity of ORM's the request could also take longer, given that the DB is often the bottleneck. Wouldn't caching help alleviate any issues with performance on this?