scalardb 是否支持时间戳类型?如果现在,文本或 blob 是存储时间戳的最佳方式吗?

Does scalardb support timestamp type? If now, is text or blob the best way to store timestamp?

scalardb是否支持时间戳类型?如果不是,将时间戳存储为文本、blob 或其他类型的最佳方式是什么?

这个架构现在可以工作吗?

CREATE TABLE mytable (
    token_id text PRIMARY KEY,
    email text,
    expiration_time timestamp,
..
}

不,不是。

我认为最好的解决方案取决于。 使用 BIGINT 并在其中存储 Unix 时间戳是 space 有效的方法之一,但每次都需要转换。 作为替代方案,我们可以使用 TEXT 并存储字符串格式的日期时间,但它使用更多 space.