使用 eouch 库将独立附件存储在 Couchdb 中

发布于 2024-09-01 16:21:10 字数 141 浏览 5 评论 0原文

如何使用 eCouch 库在 Couchdb 中存储独立附件。

Ecouch提供了doc_create/3和doc_Create/2,我们可以使用这些函数吗?

有人使用 eCouch 成功存储和检索附件吗?

提前致谢。

How do I store standalone attachments in Couchdb using eCouch library.

Ecouch provides doc_create/3 and doc_Create/2, can we make use of any of these functions?

Did anyone has success in storing and retrieving attachments using eCouch?

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

℉服软 2024-09-08 16:21:10

我查看了源代码并搜索了“附件”一词,但返回了零结果。除非您听到其他消息或详细检查源代码(不是那么多),否则可能没有直接附加功能。

如果是这样,您有两个选择。

  1. 使用 CouchDB 直接附件 API(即 /Db/Document/Attachment)发送和接收

  2. 内联存储附件使用 _attachments 将附件存储在文档中。

两者均记录在 wiki 中 CouchDB HTTP 文档 API 的“附件”部分。

I checked out the source code and searched for the word "attachment", which returned zero results. Unless you hear otherwise or inspect the source code in detail (it's not that much), it's possible there are no direct attachment functions.

If that is so, you have two options.

  1. Send and receive using the CouchDB direct attachment API (i.e. /Db/Document/Attachment)

  2. Store the attachment inline in the document using _attachments.

Both are documented in the "Attachments" section of the CouchDB HTTP Document API in the wiki.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文