Tarantool CE/EE Documentation portal logo
Support
Updated at July 17, 2026   02:08 PM

space_object:field_count

space_object

field_count

The required field count for all tuples in this space. The field_count can be set initially with:

box.schema.space.create(..., {    ... ,    field_count = *field_count_value* ,    ...})

The default value is 0, which means there is no required field count.

Example:

tarantool> box.space.tester.field_count---- 0...