I'm experimenting with the use of Huey as a cross platform task queue . I've found https://github.com/pjcunningham/flask-huey-example , which I've cloned and set up a virtualenv for using conda. (I'm working on windows) following the readme I tried:
$ python run_app.py
when I open http://localhost:6060/
I can click on the send button and I see the screenshot. But Although a list is created in REDIS, no task is stored:
127.0.0.1:6379> keys *
1) "huey.redis."
127.0.0.1:6379> lrange huey.redis -100 100
(empty list or set)
How Can I send tasks to the REDIS task queue ?