Grails Cassandra ORM -


i trying persist domain object in grails cassandra database using cassandra orm plugin. have persisted h2 using gorm before, want give cassandra try.

the object defined follows:

    package gibb1  class newcassa {     uuid uuid     string name     string score       static cassandramapping = [             primarykey: "uuid", // want "payid" primarykey, right might not present.             explicitindexes: ["name"]                ] } 

however following error:

| error 2013-04-18 11:04:16,533 [localhost-startstop-1] error cassandraormgrailsplugin  - exception adding orm methods gibb1.newcassa 

i posting question here because not find contact info of developer of plugin: https://github.com/bflorian/cassandra-orm

any appreciated.

with cassandra orm plugin have manually create column families, if not created correctly throw odd errors.

have created of column families?


Comments

Popular posts from this blog

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -

node.js - Bad Request - node js ajax post -