Author: lewismc
Date: Wed Feb 12 13:19:09 2014
New Revision: 1567614
URL: http://svn.apache.org/r1567614
Log:
CMS commit to gora by lewismc
Modified:
gora/site/trunk/content/current/gora-cassandra.md
Modified: gora/site/trunk/content/current/gora-cassandra.md
URL:
http://svn.apache.org/viewvc/gora/site/trunk/content/current/gora-cassandra.md?rev=1567614&r1=1567613&r2=1567614&view=diff
==============================================================================
--- gora/site/trunk/content/current/gora-cassandra.md (original)
+++ gora/site/trunk/content/current/gora-cassandra.md Wed Feb 12 13:19:09 2014
@@ -31,13 +31,13 @@ Say we wished to map some Employee data
Here you can see that we require the definition of two child elements within
the
<code>gora-orm</code> mapping configuration, namely;
- 1. The keyspace element; where we specify:
- the Cassandra keyspace schema name e.g. <b>Employee<>,
- the host e.g. <b>localhost<.b>,
+1. The keyspace element; where we specify:
+ the Cassandra keyspace schema name e.g. <b>Employee</b>,
+ the host e.g. <b>localhost</b>,
the Cassandra cluster name e.g. <b>Gora Cassandra Test Cluster</b>,
the type of column families we wish to create within Cassandra. In this
case we create three columns;
<b>p</b>, <b>f</b> and <b>sc</b> the last of which is further defined as a
super column.
- 2. Specification of persistent fields which values should map to;
+2. Specification of persistent fields which values should map to;
the Persistent class name e.g.
<b>org.apache.gora.examples.generated.Employee</b>,
the keyClass e.g. <b>java.lang.String</b> which specifies the keys which
map to the field
values,