@@ -19,6 +19,7 @@ If you prefer reading through documentation first, follow this path through the
19193 . ** Building Blocks** : Try the [ Creating Resources] ( ../recipes/crud_resource.md ) recipe.
20204 . ** Security** : Implement [ JWT Authentication] ( ../recipes/jwt_auth.md ) and [ CSRF Protection] ( ../recipes/csrf_protection.md ) .
21215 . ** Advanced** : Explore [ Performance Tuning] ( ../recipes/high_performance.md ) and [ HTTP/3] ( ../recipes/http3_quic.md ) .
22+ 6 . ** Background Jobs** : Master [ rustapi-jobs] ( ../crates/rustapi_jobs.md ) for async processing.
2223
2324### Why Use the Examples Repository?
2425
@@ -65,8 +66,11 @@ Design and build distributed systems with RustAPI.
6566| 3 | ` rate-limit-demo ` | API protection, throttling |
6667| 4 | ` microservices ` | Service communication patterns |
6768| 5 | ` microservices-advanced ` | Service discovery, Consul integration |
69+ | 6 | Background jobs (conceptual) | Background processing with ` rustapi-jobs ` , Redis/Postgres backends |
6870
71+ > Note: The ** Background jobs (conceptual)** step refers to using the ` rustapi-jobs ` crate rather than a standalone example project.
6972** Related Cookbook Recipes:**
73+ - [ rustapi-jobs] ( ../crates/rustapi_jobs.md )
7074- [ Custom Middleware] ( ../recipes/custom_middleware.md )
7175- [ Production Tuning] ( ../recipes/high_performance.md )
7276- [ Deployment] ( ../recipes/deployment.md )
@@ -116,9 +120,11 @@ Build robust, observable, and secure systems.
116120| 2 | ** Resilience** | Implement [ Circuit Breakers and Retries] ( ../crates/rustapi_extras.md#resilience ) |
117121| 3 | ** Advanced Security** | Add [ OAuth2 and Security Headers] ( ../crates/rustapi_extras.md#advanced-security ) |
118122| 4 | ** Optimization** | Configure [ Caching and Deduplication] ( ../crates/rustapi_extras.md#optimization ) |
123+ | 5 | ** Background Jobs** | Implement [ Reliable Job Queues] ( ../crates/rustapi_jobs.md ) |
119124
120125** Related Cookbook Recipes:**
121126- [ rustapi-extras: The Toolbox] ( ../crates/rustapi_extras.md )
127+ - [ rustapi-jobs: The Workhorse] ( ../crates/rustapi_jobs.md )
122128
123129---
124130
0 commit comments