Batch deletion of events after transmission #159
Labels
persistence
everything around DB access
spring-boot-2
Issues/PRs which only apply to the Spring-Boot 2 versions (Releases 20.*+)
When deleting events from the event-log repository after sending them out an inefficient implementation is used (successfulEvents.forEach(eventLogRepository::delete).
With a more efficient implementation using DELETE ... WHERE id IN (...) in the EventLogRepositoryImpl the implementation would become more efficient.
see #141 (comment)
The text was updated successfully, but these errors were encountered: