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
The current implementation of SaveAll in history repository performs individual
INSERT queries for each record, causing performance degradation when handling
large datasets.
Expected Changes
Modify SaveAll method to use bulk insert
Update ID assignment logic for bulk operations
Ensure backward compatibility
Add performance benchmarks before/after changes
Expected Benefits
Reduced database load
Improved throughput for batch operations
Better scalability for large data sets
Acceptance Criteria
Bulk insert implementation works correctly
No regression in existing functionality
Performance improvement is measurable
Unit tests are updated/added
The text was updated successfully, but these errors were encountered:
Current Status
The current implementation of
SaveAll
in history repository performs individualINSERT queries for each record, causing performance degradation when handling
large datasets.
Expected Changes
SaveAll
method to use bulk insertExpected Benefits
Acceptance Criteria
The text was updated successfully, but these errors were encountered: