Dear Wiki user,
You have subscribed to a wiki page or wiki category on "Cassandra Wiki" for change notification.
The "API06" page has been changed by BenjaminBlack.
http://wiki.apache.org/cassandra/API06?action=diff&rev1=58&rev2=59
--------------------------------------------------
=== Column ===
- The `Column` is a triplet of a name, value and timestamp. As described above, `Column` names
are unique within a row. Timestamps are arbitrary - they can be any integer you specify, however
they must be consistent across your application. It is recommended to use a timestamp value
with a fine granularity, such as milliseconds since the UNIX epoch. See DataModel for more
information.
+ The `Column` is a triplet of a name, value and timestamp. As described above, `Column` names
are unique within a row. Timestamps are arbitrary - they can be any integer you specify, however
they must be consistent across your application. It is recommended to use a timestamp value
with a fine granularity, such as microseconds since the UNIX epoch. See DataModel for more
information.
||'''Attribute''' ||'''Type''' ||'''Default''' ||'''Required''' ||'''Description''' ||
||`name` ||`binary` ||n/a ||Y ||The name of the `Column`. ||
||`value` ||`binary` ||n/a ||Y ||The value of the `Column`. ||
|