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
Hi, is it possible to bulk insert to the database? as of right now when I tried to send a notification to 5 users, there are 5 insert queries, and if there are 10000 users, I think it will execute 10000 queries, so if possible I want to bulk the insert to the database, let's say 1000 users each query.
I already tried using deliver_later, but it only does execute the send notification in the background.
I already read about this, but it's mentioning that even though it's a batch delivery for Postmark, it still executes deliver to database 5.000 times
The text was updated successfully, but these errors were encountered:
Hi @khrisnagunanasurya-iav, I am trying to solve this problem in this pull request eserna27#1, if you have some comments, I would be glad to receive/answer them.
Yeah, we should definitely bulk insert the to the database. That's separate than bulk delivery for other methods like email (some delivery methods may support it, but so may not).
Hi, is it possible to bulk insert to the database? as of right now when I tried to send a notification to 5 users, there are 5 insert queries, and if there are 10000 users, I think it will execute 10000 queries, so if possible I want to bulk the insert to the database, let's say 1000 users each query.
I already tried using
deliver_later
, but it only does execute the send notification in the background.I already read about this, but it's mentioning that even though it's a batch delivery for
Postmark
, it still executes deliver to database 5.000 timesThe text was updated successfully, but these errors were encountered: