package caqti

  1. Overview
  2. Docs
Unified interface to relational database libraries

Install

Dune Dependency

Authors

Maintainers

Sources

caqti-v1.2.3.tbz
sha256=2fc68b60d90281e11a3272fa0e760cc22282a317b734778ab0bf987ed08a2f72
sha512=c0f214776bd2eda73f54ab0f64b89a90d12afc0b793308ee21374d70fc096073a24ae66fe0516304a4dc5da8ac5b98cd7df2d2eb88b002f616ef788105c1ec64

doc/caqti.blocking/Caqti_blocking/Pool/index.html

Module Caqti_blocking.Pool

A pool implementation for the current concurrency library.

Sourcetype ('a, +'e) t
Sourceval create : ?max_size:int -> ?check:('a -> (bool -> unit) -> unit) -> ?validate:('a -> bool future) -> (unit -> ('a, 'e) result future) -> ('a -> unit future) -> ('a, 'e) t

Internal: create alloc free is a pool of resources allocated by alloc and freed by free. This is primarily indented for implementing the connect_pool functions.

  • parameter max_size

    Maximum number of resources to allocate at any given time.

  • parameter check

    A function used to check a resource after use.

  • parameter validate

    A function to check before use that a resource is still valid.

Sourceval size : ('a, 'e) t -> int

size pool is the current number of open resources in pool.

Sourceval use : ?priority:float -> ('a -> ('b, 'e) result future) -> ('a, 'e) t -> ('b, 'e) result future

use f pool calls f on a resource drawn from pool, handing back the resource to the pool when f exits.

  • parameter priority

    Requests for the resource are handled in decreasing order of priority. The default priority is 0.0.

Sourceval drain : ('a, 'e) t -> unit future

drain pool closes all resources in pool. The pool is still usable, as new resources will be created on demand.

OCaml

Innovation. Community. Security.