我正在使用Datomic,并希望根据我的查询从任意数量的时间点中提取整个实体。如果我在执行查询之前知道这些实例,那么Datomic文档就如何从两个不同的数据库实例执行查询有一些不错的例子。但是,我喜欢我的查询以确定" as-of"我需要键入数据库实例,然后在拉实体时使用这些实例。这就是我到目前为止所拥有的:
(defn pull-entities-at-change-points [entity-id]
(->>
(d/q
'[:find ?tx (pull ?dbs ?client [*])
:in $ [?dbs ...] ?client
:where
[?client ?attr-id ?value ?tx true]
[(datomic.api/ident $ ?attr-id) ?attr]
[(contains? #{:client/attr1 :client/attr2 :client/attr3} ?attr)]
[(datomic.api/tx->t ?tx) ?t]
[?tx :db/txInstant ?inst]]
(d/history (d/db db/conn))
(map #(d/as-of (d/db db/conn) %) [1009 1018])
entity-id)
(sort-by first)))
我试图找到:client
实体上某些属性发生变化的所有交易,然后拉出那些时间点存在的实体。行(map #(d/as-of (d/db db/conn) %) [1009 1018])
是我尝试在两个特定事务处创建一系列数据库实例,我知道客户端的属性已更改。理想情况下,我想在一个查询中完成所有这些操作,但我不确定这是否可能。
希望这是有道理的,但如果您需要更多细节,请告诉我。
答案 0 :(得分:4)
我会将pull调用拆分为单独的API调用,而不是在查询中使用它们。我会将查询本身限制为获取感兴趣的事务。解决这个问题的一个示例解决方案是:
(defn pull-entities-at-change-points
[db eid]
(let
[hdb (d/history db)
txs (d/q '[:find [?tx ...]
:in $ [?attr ...] ?eid
:where
[?eid ?attr _ ?tx true]]
hdb
[:person/firstName :person/friends]
eid)
as-of-dbs (map #(d/as-of db %) txs)
pull-w-t (fn [as-of-db]
[(d/as-of-t as-of-db)
(d/pull as-of-db '[*] eid)])]
(map pull-w-t as-of-dbs)))
针对使用玩具架构构建的db的此函数将返回如下结果:
([1010
{:db/id 17592186045418
:person/firstName "Gerry"
:person/friends [{:db/id 17592186045419} {:db/id 17592186045420}]}]
[1001
{:db/id 17592186045418
:person/firstName "Jerry"
:person/friends [{:db/id 17592186045419} {:db/id 17592186045420}]}])
我将评论几点:
contains
和is preferred上的集合绑定表单leverages query caching。