Coder Social home page Coder Social logo

pool's Introduction

pool

pool is a Scala port of Bryan O'Sullivan's excellent Haskell resource-pooling library bos/pool.

pool makes extensive use of the facilities provided by the Monix library.

Example

implicit val scheduler = Scheduler.io(
  name = "pool-test",
  reporter = UncaughtExceptionReporter(
    logger.error(s"pool-test: Uncaught exception in IO scheduler", _)))

// Run a `Pool[Unit] => Task[Unit]`
val usePool = Pool.withPool[Unit, Unit](
  name = "test",
  create = Task.eval(logger.info("Creating entry")),
  destroy = a => Task.eval(logger.info(s"Destroying entry $a")),
  minIdle = 5,
  maxEntries = 10,
  idleTimeout = 60.seconds,
  creatorDelay = 1.second,
  creatorInterval = 1.second,
  reaperDelay = 1.second,
  reaperInterval = 1.second
) { pool =>

    pool.withResource(a => Task.fork(Task.eval(Thread.sleep(5000))))
  }

Await.result(usePool.runAsync, Duration.Inf)

pool's People

Contributors

davidgregory084 avatar

Watchers

 avatar  avatar  avatar  avatar

pool's Issues

Connection acquisition less than ideal

This pool is susceptible to the problem described here, namely that once it has committed to creating a connection, it no longer takes a connection from the pool if one becomes available while the connection is being created.
Therefore, if connection creation takes a long time then there may be connections waiting when they could be using a connection that has just been returned to the pool instead.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.