Python combined with Redis simulation queue

Source: Internet
Author: User

It's really boring to write a very small Python program that implements the code to emulate a Redis queue: Redis_lpush.py #!/usr/bin/python3import timeimport redis def Handle (Info):    Print (info)     Time.sleep (2)  def main ():    pool = Redis. ConnectionPool (host= ' localhost ', port=6379, db=0)     r = Redis. Redis (connection_pool=pool)     i = 0    while I < 30:        i + = 1  &nbsp ;     R.lpush (' Task ', i)         handle (i)  if __name__ = = "__main__":    Main () & Nbsp; redis_brpop.py #!/usr/bin/python3import timeimport redis def handle (Info):     Print (info)     Time.sleep (2)  def main ():    Pool = redis. ConnectionPool (host= ' localhost ',  port=6379, db=0)     R = redis. Redis (connection_pool=pool)     while 1:        result = r.brpop (' Task ',  0)       &NBSP Handle (result[1]) if __name__ ==  "__main__":    Main ()    final effect such as:

Have the same person as me--half a day before the holiday do not know what to do, some words to raise a hand ~ ~ ~

Python combined with Redis simulation queue

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.