タグ

関連タグで絞り込む (2)

タグの絞り込みを解除

pythonとqueueに関するjuno_cのブックマーク (2)

  • シンプルなジョブキューイング rq の紹介 | Borders Labs

    あさとです。 今日はジョブキューイングを実現する rq という Python のライブラリを紹介したいと思います。 導入 pip でインストールできます。 $ pip install rq 別途、バックエンドで必要となる Redis をインストールしておく必要があります。 ジョブの作成 ...あさとです。 今日はジョブキューイングを実現する rq という Python のライブラリを紹介したいと思います。 導入 pip でインストールできます。 $ pip install rq 別途、バックエンドで必要となる Redis をインストールしておく必要があります。 ジョブの作成 今回は下記の様な実行時のエポックタイムを単純に返すだけのジョブを作成しました。 # myjob.py import time def ReturnEpoch(): data = time.time() return d

    シンプルなジョブキューイング rq の紹介 | Borders Labs
  • Homepage | Celery: Distributed Task Queue

    This document describes the current stable version of Celery (5.3). For development docs, go here. Celery - Distributed Task Queue¶ Celery is a simple, flexible, and reliable distributed system to process vast amounts of messages, while providing operations with the tools required to maintain such a system. It’s a task queue with focus on real-time processing, while also supporting task scheduling

  • 1