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
perf: graduate asset-server binary search experiment to 100%
The improved iterative binary search implementation has been graduated from a 50% experiment to the default implementation. This provides better performance for asset manifest lookups by replacing the recursive binary search with an iterative approach.
Changes:
- Replace experimental logic in worker.ts with direct usage of improved implementation
- Update assets-manifest.ts to use iterative binary search algorithm
- Remove experimental files (assets-manifest.2.ts and its test file)
- Update tests to work with new implementation signature
- Add changeset documenting the performance improvement
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <[email protected]>
perf: graduate asset-server binary search experiment to 100%
6
+
7
+
The improved iterative binary search implementation has been graduated from a 50% experiment to the default implementation. This provides better performance for asset manifest lookups by replacing the recursive binary search with an iterative approach.
0 commit comments