Displaying 1 result from an estimated 1 matches for "check_all_feeds_and_create_tel".
Did you mean:
check_all_feeds_and_create_tells
2005 Nov 04
0
Threads and Active Reccord
...eed objects in one thread, then
modifying them and saving them in a different thread, do I need to so
anything special, like pre-fetch the accounts collection somehow?
Below is the code that''s being used to produce the problems:
<code>
# method run by controller
def check_all_feeds_and_create_tells
fill_feed_queue
sleep(1.minute)
checkers = (1..3).map do |i|
process_feed_chunk
end
end
private
def fill_feed_queue
last_at = 0
@queue = SizedQueue.new(10) # with a capacity for 10
# we do the queue filling in a single thread that runs unt...