couchDB:每个文档存储 MB

发布于 2024-08-14 01:35:16 字数 135 浏览 2 评论 0原文

我现在正在分析 couchDB。是否可以每个文档存储 MB 的数据?例如 JPEG 图像。

我知道我需要对所述数据进行编码(base64 或其他)才能适合 JSON 容器。

请寻求实用建议。

I am analyzing couchDB at the moment. Is it possible to storage MB worth of data per document? E.g. a JPEG image.

I understand I would need to encode (base64 or something) the said data in order to fit the JSON container.

Practical advice sought please.

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

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

发布评论

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

评论(2

韵柒 2024-08-21 01:35:16

正如 zed 在他的评论中所说,做到这一点的最佳方法是使用附件。 Wiki 有一个关于此的部分: http://wiki.apache.org/couchdb/HTTP_Document_API#附件

基本思想如下:

{
  "_id":"attachment_doc",
  "_attachments":
  {
    "foo.txt":
    {
      "content_type":"text\/plain",
      "data": "VGhpcyBpcyBhIGJhc2U2NCBlbmNvZGVkIHRleHQ="
    }
  }
}

您应该对附件内容进行 Base64 编码,这是正确的。每个文档可以有多个附件。

来自 wiki 的注意请注意,您发送的任何 base64 数据都必须位于单行字符上,因此请预处理您的数据以删除任何回车符和换行符。 >

As zed said in his comment the best way to do this is using attachments. The Wiki has a section on this: http://wiki.apache.org/couchdb/HTTP_Document_API#Attachments

the basic idea is like so:

{
  "_id":"attachment_doc",
  "_attachments":
  {
    "foo.txt":
    {
      "content_type":"text\/plain",
      "data": "VGhpcyBpcyBhIGJhc2U2NCBlbmNvZGVkIHRleHQ="
    }
  }
}

You are correct that you should Base64 encode the attachments contents. You can have multiple attachments per document.

NOTE from the wiki: Please note that any base64 data you send has to be on a single line of characters, so pre-process your data to remove any carriage returns and newlines.

岁月染过的梦 2024-08-21 01:35:16

我从未尝试过大型文档,但我使用的是带有大型附件的文档(JPEG > 10 Mpix),而且效果很好。

主要问题是,如此巨大的数据库大小的复制往往每周都会以新的、有趣的方式打破。

I have never tried big documents but I'm using documents with big attachments (JPEGs > 10 Mpix) and that works well.

The main issue is that which such huge database sizes replication tend to break in new and interesting ways every week.

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