Fork me on GitHub
#datascript
<
2019-02-28
>
amarjeet17:02:09

Hi, does datascript’s transaction (`transact!`) have the same semantics as that of a database transaction ? Will it behave like Datomic’s single transactor that serializes every request?

hiredman18:02:12

datascript is an immutable datastructure inside an atom, transact! use swap! to atomically swap the atoms value from one immutable datastructure to another

amarjeet19:02:35

thanks @hiredman, makes sense.