"it, 'and what is the use of a book,' thought Alice 'without pictures or " +
"conversation?'\"}"));
Namespace namespace = new Namespace(searchBucketType, searchBucket);
Location location = new Location(namespace, BinaryValue.unsafeCreate("p1".getBytes()));
StoreOperation storeOp =
new StoreOperation.Builder(location)
.withContent(obj)
.build();
cluster.execute(storeOp);
storeOp.get();
obj.setValue(BinaryValue.create("{ \"content_s\":\"So she was considering in her own mind (as well as she could, for the " +
"hot day made her feel very sleepy and stupid), whether the pleasure " +
"of making a daisy-chain would be worth the trouble of getting up and " +
"picking the daisies, when suddenly a White Rabbit with pink eyes ran " +
"close by her.\", \"multi_ss\":[\"this\",\"that\"]}"));
location = new Location(namespace, BinaryValue.unsafeCreate("p2".getBytes()));
storeOp =
new StoreOperation.Builder(location)
.withContent(obj)
.build();
cluster.execute(storeOp);
storeOp.get();
obj.setValue(BinaryValue.create("{ \"content_s\":\"The rabbit-hole went straight on like a tunnel for some way, and then " +
"dipped suddenly down, so suddenly that Alice had not a moment to think " +
"about stopping herself before she found herself falling down a very deep " +
"well.\"}"));
location = new Location(namespace, BinaryValue.unsafeCreate("p3".getBytes()));
storeOp =
new StoreOperation.Builder(location)
.withContent(obj)
.build();
cluster.execute(storeOp);
storeOp.get();
}