Skip to content

Commit dc0e00c

Browse files
committed
chore: development v0.2.28 - comprehensive testing complete
- Fix profiling build to not overwrite release binaries in dist/ - Fix USB copy scripts to use profiling cache directory - Add --benchmark flag to Windows profiling script - Ignore all trial_runs/*.txt files (too large for GitHub)
1 parent 8f47d2f commit dc0e00c

19 files changed

+93
-78
lines changed

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,7 @@ build/.ttapi-workflow-state.json
140140
metadata.json
141141

142142
# Large trial run output files (too big for GitHub)
143-
docs/trial_runs/UltraFastFileSearch/cpp.txt
144-
docs/trial_runs/UltraFastFileSearch/rust.txt
143+
docs/trial_runs/UltraFastFileSearch/*.txt
145144

146145
# Profiling bundles (contain large binaries and profile data)
147146
bundles/

Cargo.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ members = [
3232
# Workspace Package Metadata (inherited by all crates)
3333
# ─────────────────────────────────────────────────────────────────────────────
3434
[workspace.package]
35-
version = "0.2.27"
35+
version = "0.2.28"
3636
edition = "2024"
3737
rust-version = "1.85"
3838
license = "MPL-2.0 OR LicenseRef-UFFS-Commercial"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Traditional file search tools (including `os.walk`, `FindFirstFile`, etc.) work
2121

2222
**UFFS reads the MFT directly** - once - and queries it in memory using Polars DataFrames. This is like reading the entire phonebook once instead of looking up each name individually.
2323

24-
### Benchmark Results (v0.2.27)
24+
### Benchmark Results (v0.2.28)
2525

2626
| Drive Type | Records | Time | Throughput |
2727
|------------|---------|------|------------|
@@ -33,7 +33,7 @@ Traditional file search tools (including `os.walk`, `FindFirstFile`, etc.) work
3333

3434
| Comparison | Records | Time | Notes |
3535
|------------|---------|------|-------|
36-
| **UFFS v0.2.27** | **18.7 Million** | **~142 seconds** | All disks, fast mode |
36+
| **UFFS v0.2.28** | **18.7 Million** | **~142 seconds** | All disks, fast mode |
3737
| UFFS v0.1.30 | 18.7 Million | ~315 seconds | Baseline |
3838
| Everything | 19 Million | 178 seconds | All disks |
3939
| WizFile | 6.5 Million | 299 seconds | Single HDD |

dist/latest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v0.2.27
1+
v0.2.28

0 commit comments

Comments
 (0)