Home / Companies / Supabase / Blog / September 2023

September 2023 Summaries

2 posts from Supabase

Filter
Month: Year:
Post Summaries Back to Blog
Launch Week 8 brought new features and updates to Supabase, including pgvector 0.5.0 with HNSW for faster semantic search, Hugging Face support in Python Vector Client and Edge Functions, Supabase Local Dev enhancements, Supabase Studio 3.0, a new Integrations Marketplace, Vercel Integration 2.0 and Next.js App Router Support, and Supavisor for scaling Postgres to 1 million connections. Community highlights from the past four months include HIPAA and SOC2 Type 2 compliance, Launch Week 8 hackathon winners, and various product announcements and community events.
Sep 08, 2023 726 words in the original blog post.
Supabase Vector is set to become faster with the introduction of pgvector v0.5.0, which includes a new type of index called Hierarchical Navigable Small World (HNSW). HNSW is an algorithm for approximate nearest neighbor search in high-dimensional spaces like those found in embeddings. The update allows users to take advantage of the new HNSW index on their column using CREATE INDEX ON documents USING hnsw (embedding vector_ip_ops);. HNSW combines hierarchical and navigable small world concepts, offering improved performance over inverted file (IVF) indexes.
Sep 06, 2023 1,415 words in the original blog post.