Digging Deeper
- Console (Queue, Scheduler, Command)
- File Storage (S3, Local)
- Events (Observer Pattern)
- Notifications (Mail, SMS, Database, Slack)
- Caching
- Full-Text Search
- Helpers
- Utils
Use CLI tool ./build/artisan to run Queue, Schedule, Command.
gFly’s console configuration options are stored in your application’s .env configuration file. Make sure Redis server ready
REDIS_HOST="localhost"
REDIS_PORT=6379
REDIS_PASSWORD=
REDIS_DB_NUMBER=0
REDIS_QUEUE_NUMBER=1
NoteTIP
Redis is required by gFly to run Queue, Session and Caching
Provide common function about file storage via S3, Local.
Implements the Observer Pattern for decoupled event-driven architecture. Dispatch events synchronously, asynchronously, or via a persistent Redis-backed queue.
Provide Mail, SMS, Database, Slack notification channels.
Redis is default caching
Integrates with Elasticsearch to provide powerful Full-Text search capabilities
Many useful Helpers are built in so you don’t need to spend a lot of time searching for external support libraries.
The Utils enrich your requirements