yetanalytics / lrs

Protocols, specifications, and logic for building an xAPI Learning Record Store (LRS) in Clojure(Script).
https://www.yetanalytics.com/lrs
Apache License 2.0
4 stars 1 forks source link

Handle duplicate multiparts #67

Closed milt closed 2 years ago

milt commented 2 years ago

Resolves #66

Previously multiparts were a map of sha to multipart representation. This had the effect of deduping the multiparts, which we don't want to do. This PR changes the values in that map into vectors, and reduces over it to remove used ones.

NOTE: Merge AFTER #65