Skip to content

Instantly share code, notes, and snippets.

@brikis98
Created August 9, 2011 00:57
Show Gist options
  • Select an option

  • Save brikis98/1133185 to your computer and use it in GitHub Desktop.

Select an option

Save brikis98/1133185 to your computer and use it in GitHub Desktop.
Sample Voldemort Store Configuration
<!-- Sample Voldemort store for "share" data -->
<store>
<name>CompanyStore</name>
<persistence>bdb</persistence>
<routing>client</routing>
<replication-factor>3</replication-factor>
<required-reads>2</required-reads>
<required-writes>2</required-writes>
<key-serializer>
<type>json</type>
<schema-info version="0">"int32"</schema-info>
</key-serializer>
<value-serializer>
<type>json</type>
<schema-info version="0">
{
"location":"string",
"website":"string"
}
</schema-info>
</value-serializer>
</store>
@brikis98
Copy link
Author

brikis98 commented Aug 9, 2011

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment