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. setConnectTimeout :: NominalDiffTime -> Settings -> Settings

    cql-io Database.CQL.IO

    Set the connect timeout of a connection.

  2. setConsistency :: Consistency -> BatchM ()

    cql-io Database.CQL.IO

    Set Batch consistency level.

  3. setContacts :: String -> [String] -> Settings -> Settings

    cql-io Database.CQL.IO

    Set the initial contact points (hosts) from which node discovery will start.

  4. setIdleTimeout :: NominalDiffTime -> Settings -> Settings

    cql-io Database.CQL.IO

    Set the connection idle timeout. Connections in a pool will be closed if not in use for longer than this timeout.

  5. setKeyspace :: Keyspace -> Settings -> Settings

    cql-io Database.CQL.IO

    Set the default keyspace to use. Every new connection will be initialised to use this keyspace.

  6. setLogger :: Logger -> Settings -> Settings

    cql-io Database.CQL.IO

    Set the Logger to use for processing log messages emitted by the client.

  7. setMaxConnections :: Int -> Settings -> Settings

    cql-io Database.CQL.IO

    Maximum connections per pool stripe.

  8. setMaxRecvBuffer :: Int -> Settings -> Settings

    cql-io Database.CQL.IO

    Set maximum receive buffer size. The actual buffer size used will be the minimum of the CQL response size and the value set here.

  9. setMaxStreams :: Int -> Settings -> Settings

    cql-io Database.CQL.IO

    Set the maximum number of streams per connection. In version 2 of the binary protocol at most 128 streams can be used. Version 3 supports up to 32768 streams.

  10. setMaxTimeouts :: Int -> Settings -> Settings

    cql-io Database.CQL.IO

    When receiving a response times out, we can no longer use the stream of the connection that was used to make the request as it is uncertain if a response will arrive later. Thus the bandwith of a connection will be decreased. This settings defines a threshold after which we close the connection to get a new one with all streams available.

Page 61 of many | Previous | Next