Skip to content

Commit

Permalink
Rollout interpolation search for asset manifests (1/20,000) (#8084)
Browse files Browse the repository at this point in the history
  • Loading branch information
GregBrimble authored Feb 11, 2025
1 parent d83dd19 commit 2547c0f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/fifty-hairs-drum.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@cloudflare/workers-shared": minor
---

Rollout interpolation search method for asset manifests (1 / 20,000 requests)
2 changes: 1 addition & 1 deletion packages/workers-shared/asset-worker/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ export default class extends WorkerEntrypoint<Env> {
const analytics = new ExperimentAnalytics(this.env.EXPERIMENT_ANALYTICS);
const performance = new PerformanceTimer(this.env.UNSAFE_PERFORMANCE);

const INTERPOLATION_EXPERIMENT_SAMPLE_RATE = 0;
const INTERPOLATION_EXPERIMENT_SAMPLE_RATE = 1 / 20_000; // 0.00005 = 0.005%
let searchMethod: "binary" | "interpolation" = "binary";
if (Math.random() < INTERPOLATION_EXPERIMENT_SAMPLE_RATE) {
searchMethod = "interpolation";
Expand Down

0 comments on commit 2547c0f

Please sign in to comment.