During my first steps with Tarantool I am wondering how to do basic things.
Imagine that I am storing the following registers:
s:insert(1,'{"name": "foo name", "phone": "foo phone"}')
s:insert(2,'{"name": "barname", "phone": "bar phone"}')
Is there something similar to autoincrement primary key in SQL databases so I do not need to enumerate the indexes?
Something like not specifying the primary index at all in Tarantool 1.6.
Thanks,