Safe Haskell | None |
---|---|
Language | Haskell2010 |
A variant of Data.Pool with introspection capabilities.
Synopsis
-
data
PoolConfig
a =
PoolConfig
{
- createResource :: !( IO a)
- freeResource :: !(a -> IO ())
- poolCacheTTL :: ! Double
- poolMaxResources :: ! Int
- data Pool a
- data LocalPool a
- newPool :: PoolConfig a -> IO ( Pool a)
-
data
Resource
a =
Resource
{
- resource :: a
- stripeNumber :: ! Int
- availableResources :: ! Int
- acquisition :: ! Acquisition
- acquisitionTime :: ! Double
- creationTime :: !( Maybe Double )
- data Acquisition
- withResource :: Pool a -> ( Resource a -> IO r) -> IO r
- takeResource :: Pool a -> IO ( Resource a, LocalPool a)
- tryWithResource :: Pool a -> ( Resource a -> IO r) -> IO ( Maybe r)
- tryTakeResource :: Pool a -> IO ( Maybe ( Resource a, LocalPool a))
- putResource :: LocalPool a -> a -> IO ()
- destroyResource :: Pool a -> LocalPool a -> a -> IO ()
- destroyAllResources :: Pool a -> IO ()
Pool
data PoolConfig a Source #
Configuration of a
Pool
.
PoolConfig | |
|
Striped resource pool based on Control.Concurrent.QSem .
The number of stripes is arranged to be equal to the number of capabilities so that they never compete over access to the same stripe. This results in a very good performance in a multi-threaded environment.
newPool :: PoolConfig a -> IO ( Pool a) Source #
Create a new striped resource pool.
The number of stripes is equal to the number of capabilities.
Note:
although the runtime system will destroy all idle resources when the
pool is garbage collected, it's recommended to manually call
destroyAllResources
when you're done with the pool so that the resources
are freed up as soon as possible.
Resource management
A resource taken from the pool along with additional information.
Resource | |
|
Instances
data Acquisition Source #
Describes how a resource was acquired from the pool.
Immediate |
A resource was taken from the pool immediately. |
Delayed |
The thread had to wait until a resource was released. |
Instances
Eq Acquisition Source # | |
Defined in Data.Pool.Introspection (==) :: Acquisition -> Acquisition -> Bool Source # (/=) :: Acquisition -> Acquisition -> Bool Source # |
|
Show Acquisition Source # | |
Defined in Data.Pool.Introspection |
|
Generic Acquisition Source # | |
Defined in Data.Pool.Introspection from :: Acquisition -> Rep Acquisition x Source # to :: Rep Acquisition x -> Acquisition Source # |
|
type Rep Acquisition Source # | |
Defined in Data.Pool.Introspection |
withResource :: Pool a -> ( Resource a -> IO r) -> IO r Source #
withResource
with introspection capabilities.
takeResource :: Pool a -> IO ( Resource a, LocalPool a) Source #
takeResource
with introspection capabilities.
tryWithResource :: Pool a -> ( Resource a -> IO r) -> IO ( Maybe r) Source #
A variant of
withResource
that doesn't execute the action and returns
Nothing
instead of blocking if the capability-local pool is exhausted.
tryTakeResource :: Pool a -> IO ( Maybe ( Resource a, LocalPool a)) Source #
A variant of
takeResource
that returns
Nothing
instead of blocking if
the capability-local pool is exhausted.
destroyResource :: Pool a -> LocalPool a -> a -> IO () Source #
Destroy a resource.
Note that this will ignore any exceptions in the destroy function.
destroyAllResources :: Pool a -> IO () Source #
Destroy all resources in all stripes in the pool.
Note that this will ignore any exceptions in the destroy function.
This function is useful when you detect that all resources in the pool are
broken. For example after a database has been restarted all connections
opened before the restart will be broken. In that case it's better to close
those connections so that
takeResource
won't take a broken connection from
the pool but will open a new connection instead.
Another use-case for this function is that when you know you are done with the pool you can destroy all idle resources immediately instead of waiting on the garbage collector to destroy them, thus freeing up those resources sooner.