Hoogle Search

Within LTS Haskell 24.36 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. setPolicy :: IO Policy -> Settings -> Settings

    cql-io Database.CQL.IO

    Set the load-balancing policy.

  2. setPoolStripes :: Int -> Settings -> Settings

    cql-io Database.CQL.IO

    Set the number of pool stripes to use. A good setting is equal to the number of CPU cores this codes is running on.

  3. setPortNumber :: PortNumber -> Settings -> Settings

    cql-io Database.CQL.IO

    Set the portnumber to use to connect on every node of the cluster.

  4. setPrepareStrategy :: PrepareStrategy -> Settings -> Settings

    cql-io Database.CQL.IO

    Set strategy to use for preparing statements.

  5. setProtocolVersion :: Version -> Settings -> Settings

    cql-io Database.CQL.IO

    Set the binary protocol version to use.

  6. setResponseTimeout :: NominalDiffTime -> Settings -> Settings

    cql-io Database.CQL.IO

    Set the response timeout of a connection. Requests exceeding the response timeout will fail with a ResponseTimeout exception.

  7. setRetryHandlers :: (forall (m :: Type -> Type) . Monad m => [RetryStatus -> Handler m Bool]) -> RetrySettings -> RetrySettings

    cql-io Database.CQL.IO

    Set the exception handlers that decide whether a request can be retried by the client, i.e. what errors are permissible to retry. For configuring how the retries are performed, see setRetryPolicy.

  8. setRetryPolicy :: RetryPolicy -> RetrySettings -> RetrySettings

    cql-io Database.CQL.IO

    Set the RetryPolicy to apply on retryable exceptions, which determines the number and distribution of retries over time, i.e. how retries are performed. Configuring a retry policy does not specify what errors should actually be retried. See setRetryHandlers.

  9. setRetrySettings :: RetrySettings -> Settings -> Settings

    cql-io Database.CQL.IO

    Set the retry settings to use.

  10. setSSLContext :: SSLContext -> Settings -> Settings

    cql-io Database.CQL.IO

    Set a fully configured SSL context. This will make client server queries use TLS.

Page 62 of many | Previous | Next