摘要: 出于前期用户不多,而且是部署在bluehost,出于简单考虑,用数据库代替rabbitmq.安装先安装django-kombu:$ pip install -U django-kombu配置可以直接使用原来的DATABASES数据库设置。设置 broker transport:BROKER_URL = "django://" 添加到INSTALLED_APPS:INSTALLED_APPS = ("djkombu", ) 验证数据库设置:DATABASE_ENGINE = "mysql" DATABASE_NAME = "m 阅读全文
posted @ 2012-03-06 15:50 文刀无尽 阅读(968) 评论(0) 推荐(0) 编辑
摘要: It all depends on what you want to use it for.RabbitMQ is the recommended solution, it is widely deployed, tested and supports all features. With optimized configuration you can process up to 15000 persistent tasks/s with a single process. RabbitMQ also comes with management and monitoring solutions 阅读全文
posted @ 2012-03-06 14:40 文刀无尽 阅读(1151) 评论(0) 推荐(0) 编辑