vote up 0 vote down star

I've just come to a realization about deadlocks - namely what they are - and I'm concerned about this issue affecting my Rails code.

Are there any specific deadlock issues to watch out for while developing a Rails app?

Have you ever encountered a deadlock in your Rails code - or is that even possible?

(I'm not referring to database deadlocks - only application deadlocks).

flag

just wait till you find out about race conditions! – Matt Briggs Sep 1 at 20:51

1 Answer

vote up 2 vote down check

Deadlock implies competition for an I/O resource, which is why it comes up for databases most often. If you're improperly locking and requesting resources and you're explicitly using threads, then yeah you need to be concerned.

However, the specific steps to take to mitigate any issues are dependent on the type of I/O you are accessing.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.