Sha256: 8e3ee8f1b040a7e2a2537d7b817d12db9b75c7e2aa0e2815e07ecb44b7514176

Contents?: true

Size: 1.08 KB

Versions: 6

Compression:

Stored size: 1.08 KB

Contents

#!/usr/bin/env ruby

require 'rubygems'
require 'bundler/setup'
require 'celluloid/io'
require 'benchmark/ips'

class ExampleActor
  include Celluloid::IO

  def initialize
    @condition = Celluloid::Condition.new
  end

  def example_method; end

  def finished
    @condition.signal
  end

  def wait_until_finished
    @condition.wait
  end
end

example_actor = ExampleActor.new
mailbox = Celluloid::IO::Mailbox.new

latch_in, latch_out = Queue.new, Queue.new
latch = Thread.new do
  while true
    n = latch_in.pop
    for i in 0...n; mailbox.receive; end
    latch_out << :done
  end
end

Benchmark.ips do |ips|
  ips.report("spawn")       { ExampleActor.new.terminate }
  
  ips.report("calls")       { example_actor.example_method }

  ips.report("async calls") do |n|
    waiter = example_actor.future.wait_until_finished

    for i in 1..n; example_actor.async.example_method; end
    example_actor.async.finished

    waiter.value
  end

# Deadlocking o_O
=begin
  ips.report("messages") do |n|
    latch_in << n
    for i in 0...n; mailbox << :message; end
    latch_out.pop
  end
=end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
celluloid-io-0.14.1 benchmarks/actor.rb
celluloid-io-0.14.0 benchmarks/actor.rb
celluloid-io-0.14.0.pre benchmarks/actor.rb
celluloid-io-0.13.1 benchmarks/actor.rb
celluloid-io-0.13.0 benchmarks/actor.rb
celluloid-io-0.13.0.pre2 benchmarks/actor.rb