Skip to main content
Version: 2.2.6

Content Types

Riak KV is a fundamentally content-agnostic database. You can use it to store anything you want, from JSON to XML to HTML to binaries to images and beyond. It's important to note that all objects stored in Riak need a specified content type. If you don't specify a content type, the reaction will vary based on your client library:

// In the Java client, the response when storing an object without
// specifying a content type will depend on what is being stored. If you
// store a Java Map, for example, the client will automatically specify
// that the object is "application/json"; if you store a String, the
// client will specify "application/x-www-form-urlencoded"; POJOs are
// stored as JSON by default, and so on.

Because content type negotiation varies so widely from client to client, we recommend consulting the documentation for your preferred client for more information.

Specifying Content Type

For all writes to Riak, you will need to specify a content type, for example text/plain or application/json.

Location wildeGeniusQuote = new Location(new Namespace("quotes", "oscar_wilde"), "genius");
BinaryValue text = BinaryValue.create("I have nothing to declare but my genius");
RiakObject obj = new RiakObject()
.setContentType("text/plain")
.setValue(text);
StoreValue store = new StoreValue.Builder(myKey, obj)
.build();
client.execute(store);