summaryrefslogtreecommitdiff
path: root/benchmark/vm_thread_sized_queue.yml
blob: 0a79bd4fc179dc99b6cbb2721e40dd69120bc7b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
benchmark:
  vm_thread_sized_queue: |
    require 'thread'
    # on producer, one consumer

    n = 1_000_000
    q = Thread::SizedQueue.new(100)
    consumer = Thread.new{
      while q.pop
        # consuming
      end
    }

    producer = Thread.new{
      while n > 0
        q.push true
        n -= 1
      end
      q.push nil
    }

    consumer.join
loop_count: 1