This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Task queue using redis. | |
Redis client: | |
LPUSH work "say Hello world!" | |
LPUSH work "log This goes into syslog" | |
""" | |
import redis | |
from multiprocessing import Pool |
NewerOlder