Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8431433
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T05:51:16+00:00 2026-06-10T05:51:16+00:00

I am new to redis and celery . I have gone through the basic

  • 0

I am new to redis and celery. I have gone through the basic tutorial of both, but I am not getting how to implement then in task scheduling job

I am unable to start with the scripting part. I am not getting how to write a script to make a queue, run the workers etc. I would need a practical example

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T05:51:17+00:00Added an answer on June 10, 2026 at 5:51 am

    So here’s a cannonical example of how can celery run with Redis (let the script filename be mytasks.py):

    from celery import Celery
    
    celery = Celery('tasks', broker='redis://localhost:6379/0')
    
    @celery.task
    def add(x, y):
        return x + y
    

    As you see, broker argument was set to use Redis installed on your local machine. The next thing is to start celery server:

    $ celery -A mytasks worker --loglevel=info
    

    As your tasks celery server has been started, you can now use it to run your task just by importing mytasks script, e.g from Python interpreter interactive mode:

    >>> from mytasks import add
    >>> add.delay(1, 1)
    2
    

    After some time ‘2’ will appear in console.

    That’s a basic example of how you can setup your tasks execution environment.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm new to redis, I'm storing a list in redis through erlang but I
I'm pretty new to redis and Nosql databases in general. I have a few
I am new to redis pub/sub. I have a chat facility in the system
I'm new to redis, and I'm trying out various examples. However, it doesn't seem
I am pretty new to Redis. I downloaded Jedis and added that to my
New to PHP and MySQL, have heard amazing things about this website from Leo
New developer here,Im using the Custom Image Picker by ray wenderlich. But what I
I would love to have a means to restrict read/write access to a Redis
I am new to Redis (using it at a hosted service) and want to
I am new to Node and Redis, so forgive me if I'm missing something

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.