Fork me on GitHub
#datomic
<
2019-07-31
>
hadils15:07:34

Anyone have any experience with using core.async with Lambda Ions? I would like to know if there are any issues with Lambdas timing out with processes running in the background. Thanks!

jaret15:07:19

Datomic On Prem 0.9.5951 Now available.

grzm16:07:30

I've noticed a dramatic increase in BeforeInstall times when deploying Datomic Cloud (from ~ 1 minute to over 2 minutes). Everything else is on the order of a second. Any thoughts on what might have caused that? The commit when it changed was only a change in deps.edn, where I updated deps.edn to reflect the conflicts reported when deploying.

Joe Lane17:07:01

@jaret @marshall Doc suggestion related to the cloud tuples example. The name of the ident is :reg/semester+course+student but the actual order of the tuple is different, its [:reg/course :reg/semester :reg/student] and I found it difficult to keep the differing orders straight in my head when learning tuples. Found at: https://docs.datomic.com/cloud/schema/schema-reference.html#composite-tuples

{:db/ident :reg/semester+course+student
 :db/valueType :db.type/tuple
 :db/tupleAttrs [:reg/course :reg/semester :reg/student]
 :db/cardinality :db.cardinality/one
 :db/unique :db.unique/identity}

jaret17:07:25

I’ll switch that around in the example