Re: Trying out read streams in pgvector (an extension)

Thomas Munro <thomas.munro@gmail.com>

From: Thomas Munro <thomas.munro@gmail.com>
To: "Jonathan S. Katz" <jkatz@postgresql.org>
Cc: pgsql-hackers <pgsql-hackers@postgresql.org>
Date: 2024-09-06T04:49:49Z
Lists: pgsql-hackers

Commits

Same data as JSON: GET /api/v1/messages/:b64id/commits the thread's linked commits as JSON, with link sources. API reference →
  1. Add read_stream_{pause,resume}()

On Fri, Sep 6, 2024 at 4:28 PM Thomas Munro <thomas.munro@gmail.com> wrote:
> Without this
> patch for PostgreSQL, it reads 1, 2, 4, 7 blocks (= 16 in total)
> before it has to take a break to hop to a new page, and then it start
> again at 1.  Oops.

Erm, correction: 1, 2, 4, 8, 1 (because it runs out due to m == 16 and resets).