You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remote DbTransformations are inefficient and very slow because the MagmaCoreDatabase interface doesn't allow them to be handled in bulk.
Deletes should be few and far between since we're mainly interested in adding data, so they can be allowed to be slow until they become an issue.
Creates are a problem and need to be addressed sooner. We need a method on MagmaCoreDatabase similar to create(Thing t) such as create(DbTransformation t) that uses a local Model and loads it using connection.load(Model m)
The text was updated successfully, but these errors were encountered:
Remote
DbTransformations
are inefficient and very slow because theMagmaCoreDatabase
interface doesn't allow them to be handled in bulk.Deletes should be few and far between since we're mainly interested in adding data, so they can be allowed to be slow until they become an issue.
Creates are a problem and need to be addressed sooner. We need a method on
MagmaCoreDatabase
similar tocreate(Thing t)
such ascreate(DbTransformation t)
that uses a localModel
and loads it usingconnection.load(Model m)
The text was updated successfully, but these errors were encountered: