标签: ruby-on-rails postgresql upsert
我在Rails应用程序中使用Upsert,因此我自己创建了许多Postgresql连接:
connection = PG.connect(dbname: db_name) Upsert.batch(connection, :items) do |upsert| ... end
我想知道,有没有更好的方法来管理这些连接?这些连接是否需要以某种方式关闭?
答案 0 :(得分:0)
不,您不需要手动关闭连接。请检查一下 - https://github.com/seamusabshere/upsert