Skip to content

Commit 93e3e3b

Browse files
committed
docs: fix Lance version and prefetch claims on landing pages
- index.mdx: "Lance v2" → "Lance v1/v2" (both versions supported) - why-querymode.mdx: "up to 8 concurrent R2 range reads" → "one concurrent range read per column" (no fixed cap; count depends on selected columns)
1 parent 9bee4d8 commit 93e3e3b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

docs/src/content/docs/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const top5 = await demo
3636
Zig SIMD engine decodes columns directly from raw bytes. No Arrow conversion, no DataFrame construction.
3737
</Card>
3838
<Card title="Multi-format" icon="document">
39-
Parquet, Lance v2, Iceberg, CSV, JSON, Arrow. Same API regardless of format.
39+
Parquet, Lance v1/v2, Iceberg, CSV, JSON, Arrow. Same API regardless of format.
4040
</Card>
4141
<Card title="Edge-native" icon="globe">
4242
Runs on Cloudflare Workers + Durable Objects + R2. Same code works locally with Node/Bun.

docs/src/content/docs/why-querymode.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ These do real query optimization work:
6868
- **Predicate pushdown** — filters run inside the WASM engine, not JavaScript
6969
- **SIMD vectorized decode** — Zig WASM processes columns with SIMD instructions
7070
- **Coalesced I/O** — adjacent page reads merge into single range requests
71-
- **Prefetch** — fetch page N+1 while decoding page N, with up to 8 concurrent R2 range reads per page
71+
- **Prefetch** — fetch page N+1 while decoding page N, one concurrent range read per column
7272
- **Partial aggregation** — Fragment DOs aggregate locally, Query DO merges
7373
- **Memory-bounded spill** — sort and join spill to R2 via Grace hash partitioning when they exceed budget
7474

0 commit comments

Comments
 (0)