Displaying 1 result from an estimated 1 matches for "neighborsville".
2008 Oct 08
1
Memory leak problem
I have a txt file with some data that i need to import to de database.
I''m using ruby to import those data but i have a major problem, when i
''ve
a large amount of data i run out of memory.
File.open("#{RAILS_ROOT}/public/files/Neighborsville.TXT").each() do
|line|
@stringArray = line.split("|")
@i += 1
puts @i
@pid = @stringArray[0]
@chain_id = @stringArray[1]
@business = Business.find_by_pid_and_chain_id(@pid,@chain_id);
#Check PID + CHAIN_ID
@business.pid = @stringArray[0...