-
Notifications
You must be signed in to change notification settings - Fork 8
Celery
- Histori: usulan dan konfirmasi
Hampir setiap proyek membutuhkan antrian tugas begitu juga Saleor.
Celery adalah salah satu project antrian paling populer untuk Python dan juga mudah untuk diintegrasikan dan digunakan.
Hal-hal yang dijalankan Celery dalam antrian secara default meliputi:
- mengirim email
- membuat gambar thumbnails
- menghasilkan file umpan (umpan Google Merchant)
Celery bekerja berdasarkan sinkronisasi pengiriman pesan yang didistribusikan. Ini difokuskan pada operasi real-time, tetapi mendukung penjadwalan juga.
Unit eksekusi, yang disebut tugas, dieksekusi bersamaan pada satu atau lebih server pekerja menggunakan multiprosesor, Eventlet, atau gevent.
Tugas dapat dieksekusi sbb
- secara tidak sinkron (di latar belakang) atau
- secara sinkron (tunggu sampai siap).
Da lam melakukan tugasnya, celery bekerja via pialang pesan.
Pialang pesan yang disarankan adalah RabbitMQ atau Redis. Saleor menggunakan Redis.
Update history meliputi file berikut
- saleor/settings.py
- saleor/celeryconf.py
- saleor/userprofile/management/commands/.py
- saleor/search/backends/elasticsearch.py
- saleor/product/models.py
This documentation is mapped under Mapping and licensed under Apache License, Version 2.0.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Copyright (c) 2018-2020 Chetabahana Project
You are on the wiki of our repo
- Site
- Main
- Project
- Pratinjau
- Pola Dasar
- Bagan Kerja
- Field Tutorial
- Cloud Site API
- Google Ads API
- Cloud Tasks API
- Google Trends API
- Basis Implementasi
- Beranda
- Perangkat
- Pasang Aplikasi
- Penyetelan Aplikasi
- Menyiapkan Frontend
- Menjalankan Backend API
- Menjalankan Toko
