Re: Parallel Execution of Query

From: James Keener <jim(at)jimkeener(dot)com>
To: Shmagi Kavtaradze <kavtaradze(dot)s(at)gmail(dot)com>, pgsql-novice(at)postgresql(dot)org
Subject: Re: Parallel Execution of Query
Date: 2015-11-30 21:19:46
Message-ID: 565CBD72.4090703@jimkeener.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

async is just an ability some client libraries offer/expose which allow
you to resume execution of your application before results are returned
from the database. This is similar to async HTTP requests, "promises"
(common in modern JavaScript), or async/await (as offered in some
languages) if you're familiar with those.

It doesn't change the 1-core per query limitation on the server.

Jim

In response to

Browse pgsql-novice by date

  From Date Subject
Next Message tim.child 2015-11-30 21:39:15 Re: Parallel Execution of Query
Previous Message Shmagi Kavtaradze 2015-11-30 21:10:05 Re: Parallel Execution of Query