Пакет pgbouncer: Информация

    Исходный пакет: pgbouncer
    Версия: 1.9.0-alt1
    Собран:  7 апреля 2019 г. 19:18 в задании #226805
    Категория: Базы данных
    Сообщить об ошибке в пакете
    Домашняя страница: https://github.com/pgbouncer/pgbouncer

    Лицензия: BSD
    О пакете: Lightweight connection pooler for PostgreSQL
    Описание: 
    Several levels of brutality when rotating connections:
    
    Session pooling - Most polite method. When client connects, a server
    connection will be assigned to it for the whole duration it stays
    connected. When client disconnects, the server connection will be put
    back into pool.
    
    Transaction pooling - Server connection is assigned to client only
    during a transaction. When PgBouncer notices that transaction is over,
    the server will be put back into pool. This is a hack as it breaks
    application expectations of backend connection. You can use it only
    when application cooperates with such usage by not using features that
    can break. See the table below for breaking features.
    
    Statement pooling - Most aggressive method. This is transaction
    pooling with a twist - multi-statement transactions are disallowed.
    This is meant to enforce "autocommit" mode on client, mostly targeted
    for PL/Proxy.

    Список rpm-пакетов, предоставляемых данным srpm-пакетом:
    pgbouncer (x86_64, i586, aarch64)
    pgbouncer-debuginfo (x86_64, i586, aarch64)

    Сопровождающий: Grigory Ustinov


      1. libssl-devel
      2. python-module-docutils
      3. libevent-devel

    Последнее изменение


    31 января 2019 г. Grigory Ustinov 1.9.0-alt1
    - Build new version.
    10 мая 2017 г. Ivan Zakharyaschev 1.7.2-alt8
    - %config(noreplace) modifiers used where needed
    21 апреля 2017 г. Ivan Zakharyaschev 1.7.2-alt7
    - Our own dir (/etc/pgbouncer/) is used to hold the additional conf
      (like in other distros). Less mess in /etc/