mirror of https://github.com/peter4431/rq.git
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			36 lines
		
	
	
		
			871 B
		
	
	
	
		
			Python
		
	
			
		
		
	
	
			36 lines
		
	
	
		
			871 B
		
	
	
	
		
			Python
		
	
| #!/usr/bin/env python
 | |
| import optparse
 | |
| from rq import use_redis, Queue, Worker
 | |
| 
 | |
| 
 | |
| def parse_args():
 | |
|     parser = optparse.OptionParser()
 | |
|     parser.add_option('-b', '--burst', dest='burst',
 | |
|             action='store_true', default=False,
 | |
|             help='Run in burst mode (quit after all work is done).')
 | |
|     parser.add_option('-n', '--name', dest='name',
 | |
|             action='store', type='string', default=None,
 | |
|             help='Specify a different name.')
 | |
|     opts, args = parser.parse_args()
 | |
|     return (opts, args, parser)
 | |
| 
 | |
| def main():
 | |
|     opts, args, parser = parse_args()
 | |
| 
 | |
|     use_redis()
 | |
| 
 | |
|     if len(args) == 0:
 | |
|         # Use the default queue
 | |
|         queues = [Queue()]
 | |
|     else:
 | |
|         queues = map(Queue, args)
 | |
| 
 | |
|     w = Worker(queues, name=opts.name)
 | |
|     if opts.burst:
 | |
|         w.work_burst()
 | |
|     else:
 | |
|         w.work()
 | |
| 
 | |
| if __name__ == '__main__':
 | |
|     main()
 |