modelRT/task
douxu f8c0951a13 Extend async task system with database integration and retry management
- Add AsyncTaskConfig to config structure
  - Create database operations for task state management (async_task_extended.go)
  - Add configuration middleware for Gin context
  - Extract task worker initialization to separate file (initializer.go)
  - Implement retry strategies with exponential backoff (retry_manager.go)
  - Add retry queue for failed task scheduling (retry_queue.go)
  - Enhance worker metrics with detailed per-task-type tracking
  - Integrate database operations into task worker for status updates
  - Add comprehensive metrics logging system
2026-04-03 10:07:43 +08:00
..
handler_factory.go add code of async task system 2026-03-20 15:00:04 +08:00
initializer.go Extend async task system with database integration and retry management 2026-04-03 10:07:43 +08:00
metrics_logger.go Extend async task system with database integration and retry management 2026-04-03 10:07:43 +08:00
queue_message.go add code of async task system 2026-03-20 15:00:04 +08:00
queue_producer.go add code of async task system 2026-03-20 15:00:04 +08:00
retry_manager.go Extend async task system with database integration and retry management 2026-04-03 10:07:43 +08:00
retry_queue.go Extend async task system with database integration and retry management 2026-04-03 10:07:43 +08:00
types.go initialize the asynchronous task system's initial structure 2026-03-05 17:15:51 +08:00
worker.go Extend async task system with database integration and retry management 2026-04-03 10:07:43 +08:00