Jian Lin wrote: > Jian Lin wrote: > >> i was doing it like this: >> >> >> all_phrases = frequencies.keys >> Phrase.transaction do >> all_phrases.each do |phrase| >> recordPhrase = Phrase.new(:s => phrase, :frequency => >> frequencies[phrase], :length => lengths[phrase]) >> recordPhrase.save >> end >> end > > by the way, the table has indexes on all fields: s, frequency, and > length. >
That'll slow down inserts/updates, but not by a huge amount on such a small table. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

