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.
有人用 Cherrypy 和 Boto 吗?有什么问题吗?线程?有什么简单的例子吗?
我想知道将初始 boto.connect_sdb 语句放在哪里以及是否可以保存域对象或在处理每个页面时必须调用 get_domain 。
我没有专门将 boto 与 CherryPy 一起使用,但肯定有一些示例(例如 botoweb)在类似的框架中使用它。SDBConnection 对象(或 boto 中的任何连接对象)的主要内容是它们在幕后使用 httplib,这不是线程安全的,因此您绝对可以重用和持久化连接和域对象,但要确保每个线程都有自己的。
希望有帮助。