如何比较Elixir和Ecto的日期

时间:2015-08-31 10:31:22

标签: elixir phoenix-framework ecto

我有一个Ecto.DateTime的实例,我从数据库列中获取,我需要检查此日期是否超过5分钟。

最好的方法是什么?

为了更清楚,这是我在ruby中需要的 - >

updated_at < (Time.now - 5.minutes)

1 个答案:

答案 0 :(得分:19)

您可以使用datetime_add/3使用负值作为count参数来执行此操作:

from u in User,
  where: u.reset_password_sent_at > datetime_add(^Ecto.DateTime.utc, -5, "minute")

如果您需要在不使用查询的情况下执行此操作,则可以使用:calendar erlang模块中的函数:

ecto_5_mins_ago =
  Ecto.DateTime.utc
  |> Ecto.DateTime.to_erl
  |> :calendar.datetime_to_gregorian_seconds
  |> Kernel.-(60 * 5)
  |> :calendar.gregorian_seconds_to_datetime
  |> Ecto.DateTime.from_erl

Ecto.DateTime.compare(u.reset_password_token, ecto_5_mins_ago)