README 461 B

123456789101112131415161718
  1. RedisQueuePlugin wraps the RedisQueueManager class which is a queue manager
  2. that uses Redis as it's backing storage.
  3. Installation
  4. ============
  5. This plugin is replaces other queue manager plugins, such as UnQueue,
  6. which enabled by default and which should, but is not required to be
  7. disabled.
  8. addPlugin('RedisQueue', ['server' => 'your-redis-instance-and-port']);
  9. Example
  10. =======
  11. In config.php
  12. addPlugin('RedisQueue', ['server' => 'tcp://localhost:6379']);