Created
August 9, 2011 00:57
-
-
Save brikis98/1133185 to your computer and use it in GitHub Desktop.
Sample Voldemort Store Configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- 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> |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
See A LinkedIn app end to end: JRuby, Frontier, and Voldemort for more info.