MCPcopy Create free account
hub / github.com/ZenSystemAI/Zengram / supportsIterativeScan

Function supportsIterativeScan

api/src/services/pgvector.js:48–51  ·  view source on GitHub ↗
(version)

Source from the content-addressed store, hash-verified

46
47// iterative_scan (relaxed_order) landed in pgvector 0.8.0.
48export function supportsIterativeScan(version) {
49 if (!version) return false;
50 return version.major > 0 || (version.major === 0 && version.minor >= 8);
51}
52
53// ef_search clamp for a given result limit: enough candidates to survive
54// client_id post-filtering without collapsing recall on sparse tenants, capped

Callers 2

initPgvectorFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected