如何让 Riak 存储图像或二进制数据?
Riak 可以用来存储图像或二进制数据吗?它似乎只能存储 JSON 文档,这是一个正确的假设吗?
Can Riak be used to store images or binary data? It seems to only be able to store JSON documents, is this a correct assumption?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
正如z8000所说,Riak可以存储你喜欢的任何数据。如果您使用 Erlang 接口,只需将 riak_object 的值设置为您想要存储的任何值。
如果您使用 HTTP,请将您的客户端指向“原始”接口: http://hg.basho.com/riak/src/tip/doc/raw-http-howto.txt 它允许您存储数据并以您喜欢的任何内容类型提供数据。
As z8000 said, Riak can store any data you like. If you're using the Erlang interface, just set the value of the riak_object to whatever you want to store.
If you're using HTTP, point your client at the "raw" interface: http://hg.basho.com/riak/src/tip/doc/raw-http-howto.txt It allows you to store data and serve it with whatever content type you like.
不,Riak 可以存储任意数据。然而,jiak 接口需要具有特定“模式”的 JSON。
No, Riak can store arbitrary data. The jiak interface expects JSON with a certain "schema" however.