polandll commented on code in PR #3091: URL: https://github.com/apache/cassandra/pull/3091#discussion_r1491566917
########## doc/modules/cassandra/pages/reference/cql-commands/create-table-examples.adoc: ########## @@ -68,6 +68,28 @@ After the disk space limit is reached, writes to CDC-enabled tables are rejected See https://docs.datastax.com/en/dse/6.8/dse-admin/datastax_enterprise/config/configCassandra_yaml.html#configCassandra_yaml__cdcSpaceSection[Change-data-capture (CDC) space settings] for information about available CDC settings. ==== +== Create a table with a trie memtable + +To create a table with a trie memtable, a memtable configuration must be enabled in `cassandra.yaml`. See xref:architecture/storage-engine/memtable.adoc[Memtable] for more information. + +To create a table with a trie memtable: + +[source,language-cql] +---- +include::cassandra:example$CQL/cyclist_id-table.cql[tag=trie-memtable] +---- + +== Create a table with a sharded skiplist memtable + +To create a table with a sharded skiplist memtable, a memtable configuration must be enabled in `cassandra.yaml`. See xref:architecture/storage-engine/memtable.adoc[Memtable] for more information. + +To create a table with a trie memtable: Review Comment: Never mind - I realized what the error was. I changed this to a skiplist example anyway. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]

