如何查看Celery存储在redis里面的结果?
PHP中文网
PHP中文网 2017-04-21 11:18:41
0
2
808
app = Celery('tasks', backend='amqp', broker='amqp://')
Or if you want to use Redis as the result backend, but still use RabbitMQ as the message broker (a popular combination):

app = Celery('tasks', backend='redis://localhost', broker='amqp://')

=========

  Redis 命令行结果
  127.0.0.1:6379> keys *
 1) "emails"
 2) "mmtest"
 3) "_kombu.binding.celery"
 4) "_kombu.binding.celeryev"
 5) "celery-task-meta-f418abea-7827-4220-b72e-a0669e8b8a08"
 6) "celery-task-meta-43105310-a8e2-483b-bd8a-8a54affc9192"
 7) "_kombu.binding.celery.pidbox"
 8) "name"
 9) "unacked_mutex"
10) "email"
11) "mygmail"
12) "myyahoo"

如何产看redis里面的存储内容?

PHP中文网
PHP中文网

认证0级讲师

全員に返信(2)
Ty80

これは実際には Redis の問題であると考えられます。

type コマンドを使用して対応するデータ型を表示し、他のコマンドを使用してコンテンツを表示しますtype 命令查看对应的数据类型,再使用其他命令查看内容

> type $key

例如对于最基本的键值,使用 get $key 即可。对于 list ,使用 lrange (由于是拿一个范围,需要先用 llen リーリー

たとえば、最も基本的なキー値の場合は、get $key を使用します。 list の場合は、lrange を使用します (範囲を取得しているため、最初に llen を使用してパラメータとして長さを取得する必要があります)。

もちろん、Python で Redis クライアントの関連コマンドを呼び出すことも可能です。 🎜
いいねを押す +0
洪涛

Celery にタスクの実行結果を保存させることができます。以下の結果関連の設定を参照してください。
http://docs.celeryproject.org...

result_backend
result_cache_max
result_compression
result_exchange
result_exchange_type
result_expires
result_persistent
result_serializer

閲覧方法は、対応するバックエンドで直接閲覧する他、flowerを利用することも可能です

いいねを押す +0
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート