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 API 创建动物区数据库,如下所示:
client.query(q.create_database({ "name": "annuvin" }))
另外,我可以按如下方式创建集合:
client.query(q.create_collection({ "name": "spells" }))
那么,如何将“spells”集合附加到“annuvin”数据库?谢谢你的指点!
在动物区系中,文档的范围始终限于用于创建它们的秘密数据库。因此,您需要在create_key({"role": "server", "database": "annuvin"})新客户端中使用和使用返回的密钥。new_session_client非常适合这个。这将为您提供一个客户,annuvin然后您可以继续在其中创建文档。
create_key({"role": "server", "database": "annuvin"})
new_session_client
annuvin