是否可以在 Couchbase 中加载 word 文档或文本文件?

Is it possible to load a word document or text files in Couchbase?

我是 NoSQL 的新手,也是 Couchbase 的新手。 我使用

创建了存储桶

curl- Administrator:admin -d name=test -d ramQuotaMB=100 -d coutctype=none -d replicaNumber=0 -d proxyport=11216 http://localhost:8091/pools/defaults/buckets

现在我想将类似简历的文本文件上传到此存储桶。 我该怎么做? Couchbase可以上传word文档吗? 我们在哪里设计这些文档的架构?

Couchbase 是一个无模式 nosql 数据库,您不必在存储数据之前指定数据的结构。这意味着您可以将存储的内容混合在一个存储桶中,并根据需要更改文档的内容。通过将它们存储为 二进制文档 ,可以在 Couchbase 中存储 word 文档或任何其他与此相关的内容。 Couchbase 允许您存储任意数据,只要它符合正常 document constraints,例如 20MB 大小限制。您应该记住,与 JSON 文档相比,二进制文档的功能有限,例如,您不能将视图引擎与二进制文档一起使用。

支持的与 Couchbase 交互的方式是通过 client SDK's, these will give you the best flexibility and performance. Pick your preferred language from the list of client libraries (located just below the Couchbase server download links) and then head over to the developer documentation 中的一种,以获得有关如何开始的一般概述,然后为每个客户提供更多信息。