如何对 Datalog 查询中的结果进行排序
How to sort result in a Datalog query
我正在使用 datomic 和 play 框架。玩是惊人的,datomic 是快速的。所以整体来说是一个很好的组合。因为,我是 datomic 的新手(和数据日志,即查询语言 datomic 使用),我无法对我的结果进行排序(就像我们一样,在 sql 中排序)。例如。
如果我的查询是:
q= [:find ?title
:where
[?e :movie/title ?title]
[?e :movie/director "Dave Swag"]
[?e :movie/year ?year]
[(sort ?year)] //here I am trying to sort by year
]
它应该 return 导演是 Dave Swag 的电影的标题,结果按图像发布的年份排序。谢谢 :)
如果要对结果 set 进行排序,您需要在查询之外对返回的结果集执行此操作。清单 20 中的 Datomic blog post about querying 中有一个这样的示例:
(def hist (d/history db))
(->> (d/q '[:find ?tx ?v ?op
:in $ ?e ?attr
:where [?e ?attr ?v ?tx ?op]]
hist
editor-id
:user/firstName)
(sort-by first))
=> ([13194139534319 "Ed" true]
[13194139534335 "Ed" false]
[13194139534335 "Edward" true])
我正在使用 datomic 和 play 框架。玩是惊人的,datomic 是快速的。所以整体来说是一个很好的组合。因为,我是 datomic 的新手(和数据日志,即查询语言 datomic 使用),我无法对我的结果进行排序(就像我们一样,在 sql 中排序)。例如。
如果我的查询是:
q= [:find ?title
:where
[?e :movie/title ?title]
[?e :movie/director "Dave Swag"]
[?e :movie/year ?year]
[(sort ?year)] //here I am trying to sort by year
]
它应该 return 导演是 Dave Swag 的电影的标题,结果按图像发布的年份排序。谢谢 :)
如果要对结果 set 进行排序,您需要在查询之外对返回的结果集执行此操作。清单 20 中的 Datomic blog post about querying 中有一个这样的示例:
(def hist (d/history db))
(->> (d/q '[:find ?tx ?v ?op
:in $ ?e ?attr
:where [?e ?attr ?v ?tx ?op]]
hist
editor-id
:user/firstName)
(sort-by first))
=> ([13194139534319 "Ed" true]
[13194139534335 "Ed" false]
[13194139534335 "Edward" true])