<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://permalink.gmane.org/gmane.comp.db.hector.user">
    <title>gmane.comp.db.hector.user</title>
    <link>http://permalink.gmane.org/gmane.comp.db.hector.user</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.db.hector.user/8025"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.db.hector.user/8024"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.db.hector.user/8023"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.db.hector.user/8022"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.db.hector.user/8021"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.db.hector.user/8020"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.db.hector.user/8019"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.db.hector.user/8018"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.db.hector.user/8017"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.db.hector.user/8016"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.db.hector.user/8015"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.db.hector.user/8014"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.db.hector.user/8013"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.db.hector.user/8012"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.db.hector.user/8011"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.db.hector.user/8010"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.db.hector.user/8009"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.db.hector.user/8008"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.db.hector.user/8007"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.db.hector.user/8006"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.db.hector.user/8025">
    <title>Hector Mutator</title>
    <link>http://permalink.gmane.org/gmane.comp.db.hector.user/8025</link>
    <description>&lt;pre&gt;Hello everybody!

I'm using hector for insert columns in runtime on cassandra. But this 
columns don't appear in metadata, so i need to retrieve that columns. It's 
possible?

follow my code:

 Keyspace keyspace = HFactory.createKeyspace(getDefaultKeySpace(), cluster);
        Mutator&amp;lt;String&amp;gt; mutator = HFactory.createMutator(keyspace, 
StringSerializer.get(), new BatchSizeHint(1, keyValuePairs.size()));
        for (Map.Entry&amp;lt;String, Object&amp;gt; entry : keyValuePairs.entrySet()) {
            String property = entry.getKey();
            Object value = entry.getValue();
            HColumn&amp;lt;String, Object&amp;gt; column = createColumn(property, value, 
StringSerializer.get(), new TypeConverterSerializer&amp;lt;Object&amp;gt;(value));
            mutator.addInsertion(key, colFamily, column);
        }
        mutator.execute();


any ideas??

thanks!!

&lt;/pre&gt;</description>
    <dc:creator>Leandro Rodrigues Silva</dc:creator>
    <dc:date>2013-05-20T12:56:20</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.db.hector.user/8024">
    <title>Re: How to retrieve data from cassandra</title>
    <link>http://permalink.gmane.org/gmane.comp.db.hector.user/8024</link>
    <description>&lt;pre&gt;Thanx Nate
Is this the only way? because I have already ported my sql database to 
cassandra. Do I need to run the complete procedure again after storing that 
extra marker to denote the type? And suppose I have done that ,now how 
should I check that extra byte while retrieving rows?

On Friday, 17 May 2013 02:00:44 UTC+5:30, Nate McCall wrote:

&lt;/pre&gt;</description>
    <dc:creator>Ashu Gupta</dc:creator>
    <dc:date>2013-05-20T06:00:42</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.db.hector.user/8023">
    <title>Re: How to retrieve data from cassandra</title>
    <link>http://permalink.gmane.org/gmane.comp.db.hector.user/8023</link>
    <description>&lt;pre&gt;You will need to store a marker of some sort denoting the type either
on the column name of the column value. Using composites for this
would be a good idea. DynamicComposite would effectively give you this
for free, but they are slightly more complicated.

On Thu, May 16, 2013 at 1:11 AM, Ashu Gupta &amp;lt;gupta.ashu1602-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:

&lt;/pre&gt;</description>
    <dc:creator>Nate McCall</dc:creator>
    <dc:date>2013-05-16T20:30:44</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.db.hector.user/8022">
    <title>How to retrieve data from cassandra</title>
    <link>http://permalink.gmane.org/gmane.comp.db.hector.user/8022</link>
    <description>&lt;pre&gt;I am working on cassandra 1.2.3 and using hector 1.1-3 When I fetch columns 
using SliceQuery, it returns me all the columns with the same datatype. Is 
there any way that QueryResult have object as the datatype of column 
values? If I use bytebuffer , So if I want to return multiple columns 
containing different data types(as a wrapper method over Hector), what data 
type do I return from my wrapper method?? I obviously won't know which 
column will have which data type &amp;amp; I can't return ByteBuffer as a generic 
column value type. Can anyone help me out with this?

&lt;/pre&gt;</description>
    <dc:creator>Ashu Gupta</dc:creator>
    <dc:date>2013-05-16T06:11:34</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.db.hector.user/8021">
    <title>HUnavailableException: : May not be enough replicas present to handle consistency level.</title>
    <link>http://permalink.gmane.org/gmane.comp.db.hector.user/8021</link>
    <description>&lt;pre&gt;Hi

I have 4 nodes Cassandra cluster in production with 1.0.11 version (hector 
1.0.5).

Keyspace: MessageCache:
  Replication Strategy: org.apache.cassandra.locator.SimpleStrategy
  Durable Writes: true
    Options: [replication_factor:4]
  Column Families:
    ColumnFamily: MessageData
      Key Validation Class: org.apache.cassandra.db.marshal.BytesType
      Default column value validator: 
org.apache.cassandra.db.marshal.BytesType
      Columns sorted by: org.apache.cassandra.db.marshal.BytesType
      Row cache size / save period in seconds / keys to save : 0.0/0/all
      Row Cache Provider: 
org.apache.cassandra.cache.ConcurrentLinkedHashCacheProvider
      Key cache size / save period in seconds: 20000.0/3600
      GC grace seconds: 3600
      Compaction min/max thresholds: 4/32
      Read repair chance: 1.0
      Replicate on write: true
      Bloom Filter FP chance: default
      Built indexes: []
      Compaction Strategy: 
org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy

To incre&lt;/pre&gt;</description>
    <dc:creator>Codevally</dc:creator>
    <dc:date>2013-05-16T07:10:38</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.db.hector.user/8020">
    <title>Row Level Isolation</title>
    <link>http://permalink.gmane.org/gmane.comp.db.hector.user/8020</link>
    <description>&lt;pre&gt;I am new to Cassandra and have been using the Hector Template API's. My 
question here is how do I use Row Level Isolation when I am trying to 
update. 

My typical get looks something like:

* public* String getAttributeValueForKey( String columnName, String key ) *
throws* StoreException {


        String result = *null*;

        *try* {

            ColumnFamilyResult&amp;lt;String, String&amp;gt; columnFamilyResult = 
getTemplate().queryColumns( key );

            *if*( *null* != columnFamilyResult ) {

                result = columnFamilyResult.getString( columnName );

            }

        }

        *catch*( HectorException e ) {

            *LOGGER*.error( e );

            *throw* *new* StoreException( e );

        }


        *return* result;

    }


And the puts looks something like:

*  public* *void* putKeyWithValuesAndTimeout( String rowKey, Map&amp;lt;String, 
String&amp;gt; columns, *long* timeInMilliSeconds ) *throws* StoreException {


        ColumnFamilyUpdater&amp;lt;String, String&amp;gt; updater = 
getTemplate().creat&lt;/pre&gt;</description>
    <dc:creator>avinsemail-Re5JQEeQqe8AvxtiuMwx3w&lt; at &gt;public.gmane.org</dc:creator>
    <dc:date>2013-05-15T18:39:31</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.db.hector.user/8019">
    <title>[Firebrand] - MappedCollection objects on WHERE clauses</title>
    <link>http://permalink.gmane.org/gmane.comp.db.hector.user/8019</link>
    <description>&lt;pre&gt;Hi people,

I trying using a object annotated with &amp;lt; at &amp;gt;MappedCollection on WHERE clausre 
of my SELECT.

this is possible? how?

SELECT * FROM ColumnFamilys WHERE ColumnFamilys .dinamycColumn.nomeColuna = 
'estoque2'";

class:ColumnFamilys 
public class ColumnFamilys
{
&amp;lt; at &amp;gt;Key
private String id;

private String name;

&amp;lt; at &amp;gt;MappedCollection(lazy=false)
private List&amp;lt;DinamycColumn&amp;gt; dinamycColumns;
...
}

&lt;/pre&gt;</description>
    <dc:creator>Rafael Neves</dc:creator>
    <dc:date>2013-05-15T16:53:25</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.db.hector.user/8018">
    <title>Re: Hector Object Mapper</title>
    <link>http://permalink.gmane.org/gmane.comp.db.hector.user/8018</link>
    <description>&lt;pre&gt;Make sure Central Maven is in your repo list. 

http://mvnrepository.com/artifact/org.hectorclient/hector/1.1-3 

-Wei 

----- Original Message -----

From: "Leandro Rodrigues Silva" &amp;lt;leandroleo02-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt; 
To: hector-users-/JYPxA39Uh5TLH3MbocFFw&amp;lt; at &amp;gt;public.gmane.org 
Sent: Tuesday, May 14, 2013 7:24:42 AM 
Subject: Hector Object Mapper 

Hello guys!!! 


I'm trying to use the Hector Object Mapper, but i can't find the link of the download. When i configure que POM, the maven can't find the dependency. This is my configuration: 



&amp;lt;dependency&amp;gt; 
&amp;lt;groupId&amp;gt;org.hectorclient&amp;lt;/groupId&amp;gt; 
&amp;lt;artifactId&amp;gt;hector&amp;lt;/artifactId&amp;gt; 
&amp;lt;version&amp;gt;1.1-3&amp;lt;/version&amp;gt; 
&amp;lt;/dependency&amp;gt; 




This is right? 




Any ideas? 


Thanks a lot! 
&lt;/pre&gt;</description>
    <dc:creator>Wei Zhu</dc:creator>
    <dc:date>2013-05-14T19:17:51</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.db.hector.user/8017">
    <title>Hector Object Mapper</title>
    <link>http://permalink.gmane.org/gmane.comp.db.hector.user/8017</link>
    <description>&lt;pre&gt;Hello guys!!!

I'm trying to use the Hector Object Mapper, but i can't find the link of 
the download. When i configure que POM, the maven can't find the 
dependency. This is my configuration:

&amp;lt;dependency&amp;gt;
&amp;lt;groupId&amp;gt;org.hectorclient&amp;lt;/groupId&amp;gt;
&amp;lt;artifactId&amp;gt;hector&amp;lt;/artifactId&amp;gt;
&amp;lt;version&amp;gt;1.1-3&amp;lt;/version&amp;gt;
&amp;lt;/dependency&amp;gt;


This is right?


Any ideas?

Thanks a lot!

&lt;/pre&gt;</description>
    <dc:creator>Leandro Rodrigues Silva</dc:creator>
    <dc:date>2013-05-14T14:24:42</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.db.hector.user/8016">
    <title>Re: Firebrind OCM</title>
    <link>http://permalink.gmane.org/gmane.comp.db.hector.user/8016</link>
    <description>&lt;pre&gt;thanks for u help, this solved my problem!

I trying using firebrand on new project and I need more documentation about
this framework.

:)


2013/5/14 Raul Raja Martinez &amp;lt;raulraja-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt;




&lt;/pre&gt;</description>
    <dc:creator>Rafael Neves</dc:creator>
    <dc:date>2013-05-14T14:22:51</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.db.hector.user/8015">
    <title>Re: Firebrind OCM</title>
    <link>http://permalink.gmane.org/gmane.comp.db.hector.user/8015</link>
    <description>&lt;pre&gt;try primaryKey("KEY", ColumnDataType.TEXT)


On Tue, May 14, 2013 at 3:08 PM, Rafael Neves &amp;lt;raneves.mg-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:




&lt;/pre&gt;</description>
    <dc:creator>Raul Raja Martinez</dc:creator>
    <dc:date>2013-05-14T13:56:45</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.db.hector.user/8014">
    <title>Re: Firebrind OCM</title>
    <link>http://permalink.gmane.org/gmane.comp.db.hector.user/8014</link>
    <description>&lt;pre&gt;this method "getColumns" functionally normal if is using on Column Family
created by Cassandra-cli, but don't work for column family created by
method createColumnFamily of Firebrand :(


2013/5/14 Rafael Neves &amp;lt;raneves.mg-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt;




&lt;/pre&gt;</description>
    <dc:creator>Rafael Neves</dc:creator>
    <dc:date>2013-05-14T13:08:15</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.db.hector.user/8013">
    <title>Re: Firebrind OCM</title>
    <link>http://permalink.gmane.org/gmane.comp.db.hector.user/8013</link>
    <description>&lt;pre&gt;Raul,

I have this code now:

persistenceFactory.executeQuery(Integer.class, Query.get(createColumnFamily(
columnFamily("LastTest"),
    columnDefinitions(
        primaryKey("key_validation_class", ColumnDataType.TEXT),
        column("testDesc", ColumnDataType.TEXT)
    ),
    storageOptions(
        storageOption(StorageParameter.COMMENT, "comment"),
        storageOption(StorageParameter.READ_REPAIR_CHANCE, "1")
    )
)));
 persistenceFactory.executeQuery(Integer.class, Query.get(createIndex(
onColumnFamily("LastTest"),

column("testDesc")
)));
persistenceFactory.getColumns("LastTest",
"b25b4b70-bbd2-11e2-8f3e-90b11cf59ca2",true, "testDesc");

and the problem persist!
I have chamnge the type of primaryKey for ColumnDataType.TEXT) but don't
solved my problem.
I get the same error:
Exception in thread "main"
me.prettyprint.hector.api.exceptions.HInvalidRequestException:
InvalidRequestException(why:No indexed columns present in by-columns clause
with "equals" operator)



2013/5/14 Raul Raja Martinez &amp;lt;raulr&lt;/pre&gt;</description>
    <dc:creator>Rafael Neves</dc:creator>
    <dc:date>2013-05-14T12:39:30</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.db.hector.user/8012">
    <title>Re: Firebrind OCM</title>
    <link>http://permalink.gmane.org/gmane.comp.db.hector.user/8012</link>
    <description>&lt;pre&gt;Rafael, This is more of a firebrand question than related to Hector. I will
answer it here though but feel free to post any other question related to
FirebrandOCM at https://github.com/47deg/firebrand/issues

The PersistenceFactory.getColumns method assumes you are using mapped
objects and uses KEY as the key name to lookup columns, it also uses
default key validation UTF8 instead of UUID.

If you change it to… primaryKey("KEY", ColumnDataType.TEXT) it should work.
Also I believe you don't need the index unless you plan on querying based
on criteria on those columns.

You can simply consider using the mapper to map those columns to a bean and
simply use the "persist" and "get" methods to transparently save and
retrieve objects

Entity entity = ...;entity.setName(name);persistenceFactory.persist(entity)

Entity entity = peristenceFactory.get(Entity.class, key);





On Mon, May 13, 2013 at 7:54 PM, Rafael Neves &amp;lt;raneves.mg-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:




&lt;/pre&gt;</description>
    <dc:creator>Raul Raja Martinez</dc:creator>
    <dc:date>2013-05-14T07:46:02</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.db.hector.user/8011">
    <title>Firebrind OCM</title>
    <link>http://permalink.gmane.org/gmane.comp.db.hector.user/8011</link>
    <description>&lt;pre&gt;Hi guys,

I trying retrieve all data on my column family using 
method persistenceFactory.getColumns("Geral2", 
"b25b4b70-bbd2-11e2-8f3e-90b11cf59ca2",false, "dinName", "dinEnd"); 

this don't work when I have created my column family using follow method:  persistenceFactory.executeQuery(Integer.class, 
Query.get(createColumnFamily(
columnFamily("Geral2"),
    columnDefinitions(
        primaryKey("myKey", ColumnDataType.UUID),
        column("dinName", ColumnDataType.TEXT),
        column("dinEnd", ColumnDataType.TEXT)
    ),
    storageOptions(
        storageOption(StorageParameter.COMMENT, "comment"),
        storageOption(StorageParameter.READ_REPAIR_CHANCE, "1")
    )
)));

so, I create this index:
persistenceFactory.executeQuery(Integer.class, Query.get(createIndex(
onColumnFamily("Geral2"),
indexName("myIndex"),
column("dinName")
)));

but I have the follow error:
Exception in thread "main" 
me.prettyprint.hector.api.exceptions.HInvalidRequestException: 
InvalidRequestException(why:No indexed columns&lt;/pre&gt;</description>
    <dc:creator>Rafael Neves</dc:creator>
    <dc:date>2013-05-13T17:54:56</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.db.hector.user/8010">
    <title>Insert column DateType value</title>
    <link>http://permalink.gmane.org/gmane.comp.db.hector.user/8010</link>
    <description>&lt;pre&gt;How to insert DateType value from Hector client in columnfamily? Is need 
any external  library?
Thanks

&lt;/pre&gt;</description>
    <dc:creator>Alexandr S.</dc:creator>
    <dc:date>2013-05-10T21:25:19</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.db.hector.user/8009">
    <title>CQL 3 Inserting Data w/ Composite Keys</title>
    <link>http://permalink.gmane.org/gmane.comp.db.hector.user/8009</link>
    <description>&lt;pre&gt;I am trying to use CQL3 through the Hector API.  I've had some limited 
successes, but they are matched and exceeded by failures :(  Some successes 
include:  Insertion of data with UUID keys through the Mutator, limited 
query successes.

Right now I'm trying to insert to a CQL3 table with a composite key, am I 
pushing CQL3 through Hector too hard?  I'm using
   &amp;lt;dependency&amp;gt;
  &amp;lt;groupId&amp;gt;org.hectorclient&amp;lt;/groupId&amp;gt;
  &amp;lt;artifactId&amp;gt;hector-core&amp;lt;/artifactId&amp;gt;
  &amp;lt;version&amp;gt;1.1-3&amp;lt;/version&amp;gt;
  &amp;lt;/dependency&amp;gt;

Here is the table created in cqlsh -3
CREATE TABLE providers (providerid uuid, providername text, providertype 
text, active int, data text, primary key (providerid, providername, 
providertype, active)) WITH COMPACT STORAGE;

And here is an insert off the command line:
cqlsh:consumerinformation_3_0&amp;gt; insert into providers (providerid, 
providername, providertype, active, data) values 
(603db8fa-a2b7-4744-b568-11a2722f2042, 'M', 'Z', 0, 'data');
cqlsh:consumerinformation_3_0&amp;gt; select * from providers;

 providerid     &lt;/pre&gt;</description>
    <dc:creator>Paul Monday</dc:creator>
    <dc:date>2013-05-10T18:52:20</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.db.hector.user/8008">
    <title>Re: Fetching columns for a row preserving data types.</title>
    <link>http://permalink.gmane.org/gmane.comp.db.hector.user/8008</link>
    <description>&lt;pre&gt;Hi Vamshi

Can you paste your final code here? Actually I am facing same problem and the 
thing is I dont know the data type of column values in advance. So we have to 
dynamically find that out and then use frombytebuffer accordingle. Can you 
provide some help?

&lt;/pre&gt;</description>
    <dc:creator>Ashu</dc:creator>
    <dc:date>2013-05-09T07:31:05</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.db.hector.user/8007">
    <title>Re: Problem retrieving data while using ByteBufferSerializer</title>
    <link>http://permalink.gmane.org/gmane.comp.db.hector.user/8007</link>
    <description>&lt;pre&gt;Hi Soumik..
I am facing the same problem. Can you send me your complete code after 
solving the issue of random data types?

&lt;/pre&gt;</description>
    <dc:creator>Ashu</dc:creator>
    <dc:date>2013-05-09T07:26:59</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.db.hector.user/8006">
    <title>[ANNOUNCEMENT] Apache Gora 0.3 Released</title>
    <link>http://permalink.gmane.org/gmane.comp.db.hector.user/8006</link>
    <description>&lt;pre&gt;Good Afternoon Everyone,

The Apache Gora team are proud to announce the release of Gora 0.3.
The Apache Gora open source framework provides an in-memory data model and 
persistence for big data. Gora supports persisting to column stores, key 
value stores, document stores and RDBMSs, and analyzing the data with 
extensive Apache Hadoop™ MapReduce support. Gora uses the Apache Software 
License v2.0. 

Gora currently uses Hector Client as the underlying Cassandra client and we 
have been working to make sure that the gora-cassandra module was improved 
within this release.

This point release offers users significant improvements to a number of 
modules including a number of bug fixes, however of significant interest to 
the DynamoDB community will be the addition of a gora-dynamodb datastore 
for mapping and persisting objects to Amazon's DynamoDB [0]. Additionally 
the release includes various improvements to the gora-core module and a new 
Web Services API implementation which enables users to extend Go&lt;/pre&gt;</description>
    <dc:creator>lewismc</dc:creator>
    <dc:date>2013-05-08T21:30:20</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.db.hector.user/8005">
    <title>Re: same code, differnet running time</title>
    <link>http://permalink.gmane.org/gmane.comp.db.hector.user/8005</link>
    <description>&lt;pre&gt;what's related to that.

the cluster was idle and only running my code. 


在 2013年5月6日星期一UTC+8下午2时52分59秒，Sumit Thakur写道：

&lt;/pre&gt;</description>
    <dc:creator>月张</dc:creator>
    <dc:date>2013-05-07T02:48:14</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.db.hector.user">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.db.hector.user</link>
  </textinput>
</rdf:RDF>
