Frontmatter
| id | 8889 |
| title | Enable Turbo Mode (autoInitRecords: false) for Big Data Grid Example |
| state | Closed |
| labels | bugaiperformance |
| assignees | tobiu |
| createdAt | Jan 26, 2026, 9:09 PM |
| updatedAt | Jan 26, 2026, 9:13 PM |
| githubUrl | https://github.com/neomjs/neo/issues/8889 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Jan 26, 2026, 9:13 PM |
Enable Turbo Mode (autoInitRecords: false) for Big Data Grid Example
tobiu assigned to @tobiu on Jan 26, 2026, 9:12 PM

tobiu
Jan 26, 2026, 9:12 PM
Input from Gemini 3 Pro:
✦ Fixed the regression where the Big Data Grid example was using eager record instantiation. Added
autoInitRecords: falsetoexamples/grid/bigData/MainStore.mjsto restore Turbo Mode performance.
tobiu closed this issue on Jan 26, 2026, 9:13 PM
The Big Data Grid example (
examples/grid/bigData) is currently using the defaultautoInitRecords: truesetting inMainStore. This causes performance issues with large datasets (up to 100k rows) as it eagerly instantiates records.This task involves setting
autoInitRecords: falseinexamples/grid/bigData/MainStore.mjsto enable "Turbo Mode" (lazy instantiation) for improved performance.