timescale / pgvectorscale

A complement to pgvector for high performance, cost efficient vector search on large workloads.
PostgreSQL License
610 stars 23 forks source link

Fix buffer locks during scan #64

Closed cevian closed 7 months ago

cevian commented 8 months ago

During scan, a buffer should be pinned but not locked. Having it locked uses a LWLock for way too long and leads to out of LWLock errors.

Fixes #22