如何在 Tarantool 中查看 space 的格式?
How to see the format of the space in the Tarantool?
我在 Tarantool 中有一个 space,想看看格式。
我忽略了文档但没有看到它。
您可以通过 Box API 查看 space 的架构:
box.space.test:format()
可能的结果:
---
- [{'name': 'surname', 'type': 'string'}, {'name': 'age', 'type': 'any'}]
...
了解更多信息 in the documentation.
我在 Tarantool 中有一个 space,想看看格式。
我忽略了文档但没有看到它。
您可以通过 Box API 查看 space 的架构:
box.space.test:format()
可能的结果:
---
- [{'name': 'surname', 'type': 'string'}, {'name': 'age', 'type': 'any'}]
...
了解更多信息 in the documentation.