You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by Apache Wiki <wi...@apache.org> on 2011/04/16 00:07:14 UTC

[Cassandra Wiki] Update of "DatanucleusJDO" by FHackenberger

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Cassandra Wiki" for change notification.

The "DatanucleusJDO" page has been changed by FHackenberger.
http://wiki.apache.org/cassandra/DatanucleusJDO

--------------------------------------------------

New page:
= Tricks =
== Retrieve by UUID ==
If you are using the com.eaio.uuid.UUID as your entity primary key and would like to use the cassandra CLI to query your entity, you have to change the assumption for the key type for that column familiy to ''lexicaluuid'' or ''timeuuid'' using
    assume COLFAM keys as lexicaluuid
After that you can retrieve your entity values with something like 
    get COLFAM['fefcc560-67a8-11e0-bde0-c232b2516aea'];