skip to Main Content

Redis Stream NOMKSTREAM

What is this NOMKSTREAM in redis stream? I went through the documentation. Too bad they do not even provide simple description about it. https://redis.io/commands/xadd Can someone please explain?

VIEW QUESTION

Redis – How to change "transport" url in django celery config

I have django 3.2.7, celery 5.2.1, redis 3.5.3 I have next celery settings. (REDIS_PASSWORD) is env variable: CELERY_BROKER_URL = f'redis://:{REDIS_PASSWORD}@redis:6379/4' CELERY_BROKER_TRANSPORT_OPTIONS = {'visibility_timeout': 3600} CELERY_RESULT_BACKEND = f'redis://:{REDIS_PASSWORD}@redis:6379/1' CELERY_ACCEPT_CONTENT = ['application/json'] But when I start my docker-compose app, it shows me…

VIEW QUESTION

Redis – apscheduler loses a job after reboot

I've faced a problem with python APScheduler. I've made a simple script: from apscheduler.schedulers.background import BackgroundScheduler from time import sleep from datetime import datetime scheduler = BackgroundScheduler({ 'apscheduler.jobstores.default': { 'type': 'redis', 'host': "127.0.0.1", 'port': 6379, 'db': 0, 'encoding': "utf-8", 'encoding_errors':…

VIEW QUESTION
Back To Top
Search