Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
抱歉,我想学习 Python,并且很好奇Reddit的代码库是否使用任何类型的ORM?
看看:http ://code.reddit.com/browser/r2/r2/lib/db/
是的。Reddit 使用 Pylons 框架,并依赖 SQLAlchemy 框架来构建自己的 ORM 层。然而,就 ORM 而言,SQLAlchemy 是一个相当低级的 ORM 库,因此 Reddit 有相当多的自定义代码可以让 ORM 工作。