Async notifications in psycopg3

Поиск
Список
Период
Сортировка
От Daniele Varrazzo
Тема Async notifications in psycopg3
Дата
Msg-id CA+mi_8ZXqPXTQ11kR05s2fnRi6TGQEscw4La943_-8ZULeYK_A@mail.gmail.com
обсуждение исходный текст
Ответы Re: Async notifications in psycopg3  (Adrian Klaver <adrian.klaver@aklaver.com>)
Список psycopg
Hello,

I have introduced async notifications handling for psycopg3. At the
moment it comes in the form of a generator (eventually async - in
asyncio sense) so that they can be used as simply as:

    for notify in conn.notifies():
        # ... process

but notifies may be also received during the normal query processing,
for which a possible way to receive them can is a callback.

I am not entirely convinced about the design so I'd be happy to
receive some feedback by anyone who has ideas about how they would use
the features. There is a more complete description and references in
<https://github.com/psycopg/psycopg3/issues/5>: happy to have a
conversation either here or on the github ticket.

Cheers,

-- Daniele



В списке psycopg по дате отправления:

Предыдущее
От: Frank Millman
Дата:
Сообщение: Re: Minor issue
Следующее
От: Rory Campbell-Lange
Дата:
Сообщение: Re: Minor issue