OptionalformatOptionalindexThis [Table] should use the column named by the index parameter as
the index, which causes [Table::update] and [Client::table] input
to either insert or update existing rows based on index column
value equality.
OptionallimitThis [Table] should be limited to limit rows, after which the
earliest rows will be overwritten (where earliest is defined as
relative to insertion order).
Optionallist_How Arrow LIST and JSON Array columns are ingested. zip (the
default) and cartesian expand a row into one row per list element,
and are incompatible with index, as the rows of an expansion
repeat their index. stringify encodes each list as a JSON array in
a single string column instead.
OptionalnameOptionalpage_Back this [Table]'s canonical data with the on-disk storage backend
instead of memory. On native targets this is a memory-mapped file; on
WASM it is OPFS (Worker only). Defaults to in-memory.
Options which impact the behavior of [
Client::table], as well as subsequent calls to [Table::update].