Hay varias formas de hacer que este código sea más rápido (cada una debería ser más rápido que los anteriores, pero se vuelve cada vez menos idiomático):
-
Ejecute
insertOrUpdateAll
en lugar deinsertOrUpdate
si en slick-pg 0.16.1+await(run(TableQuery[FooTable].insertOrUpdateAll rows)).sum
-
Ejecute todos sus eventos DBIO a la vez, en lugar de esperar a que cada uno se confirme antes de ejecutar el siguiente:
val toBeInserted = rows.map { row => TableQuery[FooTable].insertOrUpdate(row) } val inOneGo = DBIO.sequence(toBeInserted) val dbioFuture = run(inOneGo) // Optionally, you can add a `.transactionally` // and / or `.withPinnedSession` here to pin all of these upserts // to the same transaction / connection // which *may* get you a little more speed: // val dbioFuture = run(inOneGo.transactionally) val rowsInserted = await(dbioFuture).sum
-
Desplácese hasta el nivel JDBC y ejecute su upsert todo de una vez (idea a través de esta respuesta ):
val SQL = """INSERT INTO table (a,b,c) VALUES (?, ?, ?) ON DUPLICATE KEY UPDATE c=VALUES(a)+VALUES(b);""" SimpleDBIO[List[Int]] { session => val statement = session.connection.prepareStatement(SQL) rows.map { row => statement.setInt(1, row.a) statement.setInt(2, row.b) statement.setInt(3, row.c) statement.addBatch() } statement.executeBatch() }