Dear Wiki user, You have subscribed to a wiki page or wiki category on "Cassandra Wiki" for change notification.
The "FileFormatDesignDoc" page has been changed by StuHood. http://wiki.apache.org/cassandra/FileFormatDesignDoc?action=diff&rev1=9&rev2=10 -------------------------------------------------- int chunk_count; /** Levels of nesting represented by this chunk. */ int arity; + + /** + * The ordering of values in the chunk: child ordered chunks are stored in sorted order, while + * parent ordered chunks assume the ordering of the previous chunk. + */ + enum Order { parent, child } order; /** Tuples of size 'arity'. */ array<bytes> values;
