* Add blog: How We Built a 4-Way Parallel Hybrid Search System Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Add cover image for parallel hybrid search post Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Update parallel hybrid search post date to 2026-03-27 * Set author to chrislatimer * Update recall docs link * review: align blog post to actual retrieval code - Reframe as evolutionary narrative (V1 asyncio.gather → connection sharing) - Add missing reranker section (cross-encoder + multiplicative boost scoring) - Replace MPFP references with LinkExpansion (3-signal CTE) - Fix SQL to match actual UNION ALL approach, explain CTE planner issue - Fix acquire_with_retry, index types (ivfflat→HNSW), fusion code - Remove fabricated perf numbers - Add alpha calibration rationale and connection contention insight * add nicoloboschi and benfrank241 as co-authors --------- Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com> Co-authored-by: Nicolò Boschi <boschi1997@gmail.com> |
||
|---|---|---|
| .. | ||
| blog | ||
| docs | ||
| examples | ||
| scripts | ||
| src | ||
| static | ||
| versioned_docs | ||
| versioned_sidebars | ||
| .gitignore | ||
| docusaurus.config.ts | ||
| package.json | ||
| README.md | ||
| sidebars.ts | ||
| tsconfig.json | ||
| versions.json | ||
Website
This website is built using Docusaurus, a modern static website generator.
Installation
npm install
Local Development
npm start
This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.
Build
npm run build
This command generates static content into the build directory and can be served using any static contents hosting service.
Deployment
Using SSH:
USE_SSH=true npm run deploy
Not using SSH:
GIT_USER=<Your GitHub username> npm run deploy
If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the gh-pages branch.