Example of a Ruby thread implementing a producer consumer problem (Queuing queue Implementation thread synchronization) _ruby topic

Source: Internet
Author: User
Tags rand

The ruby thread implements the classic producer consumer problem, using the queue class in Ruby to implement thread synchronization issues.

Copy Code code as follows:

Require "thread"
Puts "Proandcon"

Queue = Queue.new #用队列Queue实现线程同步

Producer = Thread.new Do
10.times do |i|
Sleep rand (i) # Keep threads asleep for a while
Queue << I
Puts "#{i} produced"
End
End

Consumer = thread.new Do
10.times do |i|
Value = Queue.pop
Sleep rand (I/2)
Puts "consumed #{value}"
End
End

Consumer.join #等待consumer线程的输出完成再关闭此进程

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.