Using RQ for scheduling tasks
RQ and remote scheduling
Reader level: Introductory RQ can be used to set up queues for executing long-running tasks on local or remote machines. Some steps on how to install and get started with RQ are listed below.
Installation Create a virtual environment and we will have to install the following components:
Redis-server RQ RQ-scheduler Install Redis using the following
wget http://download.redis.io/redis-stable.tar.gz tar xvzf redis-stable.tar.gz cd redis-stable make Run ‘make test’ to make sure things are working properly, followed by ‘sudo make install’ to complete the installation.
[Read More]