Suppose I need a field in tuple which should be date with time. Tarantool doesn't support date and time types out of the box.
I see two solutions:
- Store date and time as string and parse it.
- Store date and time in epoch seconds and convert it when needed.
What is the best solution to work with dates and times in Tarantool?