Guest User

Untitled

a guest
Feb 25th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. parameters:
  2. persistent_cache_dir: /tmp
  3. app_name: ProjectX
  4.  
  5. enqueue:
  6. transport:
  7. default: 'fs'
  8. fs:
  9. dsn: "file://%persistent_cache_dir%/"
  10. path: "./enqueue" // The directory where all queue\topic files remain.
  11. pre_fetch_count: 1 // Defines how many messages to fetch from the file.
  12. chmod: 600 // Defines a mode the files are created with
  13. polling_interval: 100 // How often query for new messages, default 100 (milliseconds)
  14. client:
  15. app_name: '%app_name%_%kernel.environment%'
  16. default_processor_queue: 'default'
  17. traceable_producer: true
  18. async_events: false
  19. job: false
Add Comment
Please, Sign In to add comment