多个用户电子邮件,用于添加多个标签

时间:2015-03-18 19:44:34

标签: clojure datomic data-retrieval

在系统中,用户可以将标记添加到现有条目中,如下所示:

(defn add-tag-to-post [eid email tags]
  (let [cast-eid (Long. eid)]
       (d/transact conn [{:db/id cast-eid,
                          :author/email email,
                          :post/tag tags}])))

我认为应该放入一个包含电子邮件和标签添加了实体ID的交易。


我希望能够查询此数据的所有更改,并查看哪个用户电子邮件添加了哪个标记。目前,当用户添加新标记时,所有电子邮件字段都反映最多最近用户的电子邮件:

(defn get-all-post-history-by-eid [eid]
   (->> (d/q '[:find ?title ?content ?tags ?email ?eid
               :in $ ?eid
               :where
              [?eid post/title ?title]
              [?eid post/content ?content]
              [?eid author/email ?email]
              [?eid post/tag ?tags]] (d/db conn) eid)
         (map (fn [[title content tags email eid]]
              {:title title
               :content content
               :tags tags
               :email email
               :eid eid}))
         (sort-by :email)))

返回

({:title "Straight edges...", 
  :content "If ...", 
  :tags "art",                        <diff tag
  :email "randomlady@mailnator.hax",  <same email
  :eid 1759} 
 {:title "Straight edges ....", 
  :content "If ... ", 
  :tags "scissor-less edges",         <diff tag
  :email "randomlady@mailnator.hax",  < same email
  :eid 1759} 
 {:title "Straight edges ...", 
  :content "If ...", 
  :tags "paper",                      <diff tag
  :email "randomlady@mailnator.hax",  < same email
  :eid 1759} ... )

重点是:所有不同的标签都是由不同的电子邮件添加的,但查询只是在所有字段中返回相同的电子邮件(最新的电子邮件向实体添加标签)

我刚刚将schema.edn中作者/电子邮件属性的常规更改为“很多”而不是一个,认为可能与它有关。但那不是它。

感谢任何帮助。谢谢=)


编辑:我想也许我需要一个标签/作者字段,如:

  post/tag      }
  author/email  } nothing tying these two together

+ tag/author    } does it make sense to add this?  will try and get back.

编辑#2:所以,我认为我借助本页上的文字做了一个突破(认知) http://tonsky.me/blog/unofficial-guide-to-datomic-internals/

基本上,Datomic尊重实体,这意味着如果您更改实体属性(当您为某个属性录制新值时,不会发生更改/删除),那么您实际上是在要求该属性的最新值。

意味着对于添加的每个标记,创建一个新实体是合适的,并且在该实体中它可以引用它调制的帖子。

所以从看起来像

的东西
EID  Attribute      Value     "Time/Transaction ID"
 37  :post/title     "Bees"           7
 37  :author/email   "v@a.x"          7
 37  :post/tag       "hive"           7
 37  :author/email   "diana@p"        8
 37  :post/tag       "mind"           8

如果您更改属性:post / tag,即使使用新的:author / email,您仍然在修改ID为37的实体,这将有效地“覆盖”这些值(好吧,标签是标准/很多,以便一个是附加的,但电子邮件将“覆盖”)

我的所需的行为更像是

EID  Attribute      Value     "Time/Transaction ID"
 37  :post/title     "Bees"           7
 37  :author/email   "v@a.x"          7


 38  :post/tag       "honeycomb"      8
 38  :author/email   "squire@o"       8
 38  :tag/post (ref)   37             8

意思是,ID为38的实体具有所有新值,并成功指向/指向实体37。

写出问题有很多帮助!一旦我实施了下来,我会尝试更新这个问题。希望这可以帮助他们,如果他们需要它。

1 个答案:

答案 0 :(得分:0)

有效!

(defn get-all-post-history-by-eid [pid]
  (->> (d/q '[:find ?title ?content ?tags ?email ?pid
              :in $ ?pid
              :where
              [?pid post/title ?title]
              [?pid post/content ?content]
              [?tid tag/post ?pid]         <new schema stuff
              [?tid tag/value ?tags]       <means new way to see the world
              [?tid author/email ?email]] (d/db conn) pid)
       (map (fn [[title content tags email pid]]
              {:title title
               :content content
               :tags tags
               :email email
               :eid pid}))
       (sort-by :email)))

如您所见,查询中有新字段,即:

tag/post
tag/value

tag / post在架构中的valueType为ref, tag / value有cardinality / many,是一个String。

这样,标记和帖子就会分离。现在,当我查询以获取类似

之类的帖子的所有历史记录时
vhax.dbmethods>  (get-all-post-history-by-eid 1759)

结果就像

({:title "Straight edges without scissors", 
  :content "If you ever ... ", 
  :tags "skizzorz", 
  :email "so.ku@mail.hax", :bid 1759} 

 {:title "Straight edges without scissors", 
  :content "If you ever ...  ", 
  :tags "snips", 
  :email "vild@hax.pong", :bid 1759})

反映任何电子邮件添加的标记。成功。真的觉得Datomic今天点击了我。