diff options
| author | Ellie Huxtable <ellie@atuin.sh> | 2025-07-29 16:14:27 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-29 16:14:27 +0200 |
| commit | 6c31530c7aab311db01c1c1dda3b55d871002fc4 (patch) | |
| tree | a67d7531c5908eb687c2e3fbea6d2b5ed17df700 /crates/atuin-server-postgres/Cargo.toml | |
| parent | fix(build): enable sqlite feature for sqlite server (#2848) (diff) | |
| download | atuin-6c31530c7aab311db01c1c1dda3b55d871002fc4.zip | |
feat: add IDX_CACHE_ROLLOUT (#2850)
Only really useful for Atuin cloud
Given a % chance, either use the idx cache or use the old aggregation
query
This is to enable us to test rollout the idx cache, without breaking all
queries in weird ways. Can monitor for a change in http codes/etc, and
easily roll back.
Diffstat (limited to 'crates/atuin-server-postgres/Cargo.toml')
| -rw-r--r-- | crates/atuin-server-postgres/Cargo.toml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/atuin-server-postgres/Cargo.toml b/crates/atuin-server-postgres/Cargo.toml index 8bb989d2..b75ec224 100644 --- a/crates/atuin-server-postgres/Cargo.toml +++ b/crates/atuin-server-postgres/Cargo.toml @@ -22,3 +22,4 @@ async-trait = { workspace = true } uuid = { workspace = true } metrics = "0.21.1" futures-util = "0.3" +rand.workspace = true
\ No newline at end of file |
