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.
我有一个基于 grok 的 webapp,它使用 ZODB 持久化数据。我可以离线查询对象数据库,即从将在托管 grok/paste webapp 实例的网络服务器上运行的 python 脚本吗?
当 Web 服务器同时与数据库交互时,这样做会有什么问题吗?
您可以使用 python 打开 ZODB 并检查数据,是的。要在运行网站的同时执行此操作,您需要使用ZEO或RelStorage等并发层;否则普通 FileStorage 不支持并发访问。