How to create a voldemort store?

Posted by Pankaj on Stack Overflow See other posts from Stack Overflow or by Pankaj
Published on 2013-10-20T03:45:24Z Indexed on 2013/10/20 3:53 UTC
Read the original article Hit count: 147

Filed under:
|

I am trying to understand the Voldemort java API. I am new to non relational databases, so as I understand, Voldemort's store can be compared to a table in relational model. I saw the following code in the documentation.

String bootstrapUrl = "tcp://localhost:6666";
StoreClientFactory factory = new SocketStoreClientFactory(new ClientConfig().setBootstrapUrls(bootstrapUrl));

// create a client that executes operations on a single store
StoreClient client = factory.getStoreClient("test");

Here, we got a Store client based on the an existing store (test). How can I actually create a store for Voldemort through java?

© Stack Overflow or respective owner

Related posts about java

Related posts about voldemort