Hoogle Search

Within LTS Haskell 24.34 (ghc-9.10.3)

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

  1. setConsistency :: Consistency -> BatchM ()

    cql-io Database.CQL.IO

    Set Batch consistency level.

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

    cql-io Database.CQL.IO

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

  3. 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.

  4. 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.

  5. setLogger :: Logger -> Settings -> Settings

    cql-io Database.CQL.IO

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

  6. setMaxConnections :: Int -> Settings -> Settings

    cql-io Database.CQL.IO

    Maximum connections per pool stripe.

  7. 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.

  8. 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.

  9. 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.

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

    cql-io Database.CQL.IO

    Set the load-balancing policy.

Page 61 of many | Previous | Next