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?
yes
datascript is an immutable datastructure inside an atom, transact! use swap! to atomically swap the atoms value from one immutable datastructure to another
thanks @hiredman, makes sense.