I think the freezing issue I was having is due to ...
# exposed
m
I think the freezing issue I was having is due to concurrent inserts, https://stackoverflow.com/questions/32498437/deadlock-in-mysql-due-to-insert-by-multiple-threads since apparently that's a thing. One user on SO said they solved it by trying again after a thread.sleep, how would I do that with Exposed?
Would using MariaDB with the Aria storage engine solve this issue?
t
@Miclebrick, when you face a deadlock MySQL throws an Exception, but in your case it more like a lock-wait problem which might be caused by a slow inserts. I asked for additional information in previous thread.