wandersoncferreira / mamulengo

Lightweight database based on datascript with durable store and time travel for Clojure(Script)
Eclipse Public License 2.0
51 stars 3 forks source link

If you try to send a huge list of maps, it throws an exception #60

Open wandersoncferreira opened 4 years ago

wandersoncferreira commented 4 years ago

The code needs special logic to deal with "bulk insert" because the persistent table is using a varchar(4086) to store the datoms. If you try to send a large list of maps, all of them will be stored in the same cell which is not supported. It must have a limit during the storage process and also careful investigation about the transaction IDs created by datascript must be dealt with.