Brian Candler wrote: > Nick Green wrote: >> I have this piece of code: >> >> start = Time.now.to_i >> entity.save >> puts "Saving one item took #{Time.now.to_i-start} seconds" >> >> ... it outputs >> >> Saving one item took 7 seconds. > > Try saving two entities one after the other, and time each of them. > Maybe it's a startup overhead. > > Startup problems could be: > > - loading in the ActiveRecord and ActiveSupport libraries (although I > guess in your case they are already loaded) > > - slowness establishing a connection to your database, such as lack of > reverse DNS (e.g. server accepts connection, tries to resolve your IP > into a name for logging purposes, times out, continues) > > If it's the latter problem, on the server try adding your client's IP > address and name into /etc/hosts > >> I think this must be something I don't understand about activerecord >> itself. > > Detailled questions specific to ActiveRecord would be best asked on a > Rails mailing list, since AR is a component of Rails. Thanks for the reply :) Unfortunately, in response to your first question: --The entries were saved sequentially, time varies slightly (usually 6 to 9 seconds), but is always extremely high. And to the second -- mysql server is localhost, though I don't know if that precludes it from trying to log my IP. However, the fact that calling the ActiveRecord::Base.connection.execute command correctly runs so fast probably means its not connection issues (I think, I could definitely be wrong about that, I have not perused the activerecord code to address this specific issue). As for posting in rails, will do, I think your right. Wasn't sure where to post this one since its not rails, but it is issues with a rails library in a plain ruby app. -- Posted via http://www.ruby-forum.com/.