- Add `ruvector-pg install` for Docker-based PostgreSQL deployment
- Add `ruvector-pg uninstall/status/start/stop/logs/psql` commands
- Check local image before Docker Hub, provide build instructions
- Rename old 'install' command to 'extension' to avoid conflicts
- Published as @ruvector/postgres-cli v0.2.0
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
- Eliminate vector clone in insert() by searching first, then inserting
- Remove unused hybrid-search and filtered-search feature flags
- Bump versions: ruvector-postgres 0.2.2, @ruvector/postgres-cli 0.1.2
Performance: Insert operations now require zero vector copies for the common
case (non-empty index), reducing memory allocations in hot path.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
- Enhanced postgres-cli README with badges, architecture diagram, benchmarks,
usage tutorial, and comprehensive command reference
- Added 50+ SEO keywords to package.json including vector-database, pgvector,
hnsw, gnn, attention, hyperbolic, rag, llm, semantic-search
- Updated Cargo.toml with homepage, documentation links, authors, and better
description for crates.io visibility
Published @ruvector/postgres-cli@0.1.0 to npm registry.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
- Change createVectorTable to use ruvector type (native RuVector extension)
- Add dimensions column for metadata since ruvector is variable-length
- Update index creation to use simple btree (HNSW/IVFFlat TBD)
- Tested against Docker container with ruvector extension
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
- Fix simsimd Option/Result type mismatch in scaled_dot.rs
- Fix f32/f64 type conversions in poincare.rs and lorentz.rs
- Fix AVX512 missing wrapper functions by using AVX2 fallback
- Fix Vec<Vec<f32>> to JsonB for pgrx pg_extern compatibility
- Fix DashMap get() to get_mut() for mutable access
- Fix router.rs dereference for best_score comparison
- Update Dockerfile to copy pre-written SQL file for pgrx
- Simplify init.sql to use correct function names
- Add postgres-cli npm package for CLI tooling
All changes tested successfully in Docker with:
- Extension loads with AVX2 SIMD support (8 floats/op)
- Distance functions verified working
- PostgreSQL 16 container runs successfully
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>