thread_pool

Simple Thread pool for Crystal

thread_pool

Simple Thread pool for Crystal. Only for calculate cpu heavy (or cpu blocked, like: libcurl) tasks in background threads. Not allowed to use any io operations (like: sockets, files, prints). THIS IS EXPIREMENTAL, may have bugs.

Installation

Add this to your application's shard.yml:

dependencies:
  thread_pool:
    github: kostya/thread_pool

Usage

require "thread_pool"
require "digest/md5"

# declare task class, which calculate CPU heavy operation
# it should include ThreadPool::Task and implement execute method
class Task
  include ThreadPool::Task

  getter result : String?

  def initialize(@str : String)
  end

  def execute
    s = @str
    10000.times do
      s = Digest::MD5.hexdigest(s)
    end
    @result = s
  end
end

# run 4 background threads
pool = ThreadPool.new(size: 4).run

# create 10 tasks
tasks = Array(Task).new(10) { |i| Task.new(i.to_s) }

# send tasks to background threads, to calculate it in parallel, not blocked
tasks.each { |task| pool.push(task) }

# wait until all tasks done (not io blocked)
tasks.each { |task| task.wait }

# output tasks results
tasks.each { |task| p task.result }
Repository

thread_pool

Owner
Statistic
  • 3
  • 0
  • 0
  • 0
  • 0
  • about 6 years ago
  • April 16, 2017
License

MIT License

Links
Synced at

Fri, 03 May 2024 01:40:34 GMT

Languages