tywalch/electrodb

Feature Request: BatchWrite across entities

yamatatsu opened this issue · 2 comments

I know ElectroDB have a feature transaction.write().
But when using put() and delete(), we want to use BatchWriteItem because it is less cost and higher performance.

The interface will be like following:

// create a user and attach to a tenant
await service.batchWrite
  .user.put({ userId: "", registrationCode: "" })
  .userTenantMap.put({ userId: "", tenantId: "" })
  .registrationCode.delete({ registrationCode: "" })
  .go()

or

// create a user and attach to a tenant
await service.batchWrite([
  service.entities.user.put({ userId: "", registrationCode: "" }),
  service.entities.userTenantMap.put({ userId: "", tenantId: "" }),
  service.entities.registrationCode.delete({ registrationCode: "" }),
]).go()

Actually, BatchWriteItem can effect to multiple table, but if following ElectroDB service concept, it is enough to provide the feature BatchWriteItem only for entities closed in service I think.

The interface of transaction.write() is so cool! BatchWriteItem feature can follow this interface.

https://electrodb.dev/en/mutations/transact-write/#performing-write-transactions

await yourService.batch
  .write(({ entity1, entity2 }) => [
    entity1
      .put({ prop1: "value1", prop2: "value2" })
      .commit(),

    entity2
      .delete({ prop1: "value1", prop2: "value2" })
      .commit(),
  ])
  .go();

Hey @yamatatsu 👋

Thanks for putting this together! It might be a little while before I can address this, but it makes sense and would be a great addition 👍