Ruby Threads and ActiveRecord Connections
Unlike independent processes, all Ruby Threads within the same process share memory, enabling each individual Thread to consume or process objects and elements from the same data store. A problem occurs with ActiveRecord connection consumption when using these Threads.
Post a comment