I have 16000 items in a ruby hash. (downloaded as XML and converted to hash) I need to push these into the database. Once a week some of them change, but I can't tell which ones.
What I've seen suggested is to go right to SQL, because active record was (on that site) 70 times slower on just a straight insert.. Not even thinking about the update/insert
I'm wondering what approach would be best..
Has anyone received a huge (or well smallish) chunk of data that they had to repeatedly insert/update?
Could you offer suggestions.