File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
packages/workers-shared/asset-worker/src Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ " @cloudflare/workers-shared " : minor
3+ ---
4+
5+ chore: Bump interpolation search method for asset manifest reading to 1%
Original file line number Diff line number Diff line change @@ -218,7 +218,7 @@ export default class extends WorkerEntrypoint<Env> {
218218 const analytics = new ExperimentAnalytics ( this . env . EXPERIMENT_ANALYTICS ) ;
219219 const performance = new PerformanceTimer ( this . env . UNSAFE_PERFORMANCE ) ;
220220
221- const INTERPOLATION_EXPERIMENT_SAMPLE_RATE = 1 / 20_000 ; // 0.00005 = 0.005 %
221+ const INTERPOLATION_EXPERIMENT_SAMPLE_RATE = 1 / 100 ; // 0.01 = 1 %
222222 let searchMethod : "binary" | "interpolation" = "binary" ;
223223 if ( Math . random ( ) < INTERPOLATION_EXPERIMENT_SAMPLE_RATE ) {
224224 searchMethod = "interpolation" ;
You can’t perform that action at this time.
0 commit comments