Laracon DB
Laracon DB
Talks for "queues"
Scaling Laravel at Square

The speaker shares experiences scaling Laravel applications at Square, specifically their online store products that handle hundreds of millions of requests daily. He discusses various scaling challenges they encountered and solutions implemented, including persistent database connections, advanced caching strategies using tags, optimizing service-to-service communication with Envoy, and implementing sophisticated job queuing patterns.

Building Artisan Commands

Taylor Otwell gives a practical talk on building Artisan commands in Laravel, covering basic command creation, dependency injection, and queuing. He demonstrates how to create custom commands, work with the Laravel queue system using different drivers like Beanstalkd, and shares upcoming features like a new debugging command for Laravel 4.1. The talk emphasizes writing reusable code by properly structuring commands and queue handlers.

Denormalization With Eloquent: How, Why and When

The talk discusses database denormalization in Laravel applications, focusing on improving read performance while maintaining data integrity. The speaker explains how to use materialized views and event-driven updates to create denormalized data structures that can significantly improve query performance without sacrificing the benefits of normalized databases. The presentation includes practical examples of implementing denormalization using Laravel's eloquent ORM and queue system.

State of Laravel

Taylor Otwell presents new features coming in Laravel 5.5, focusing primarily on API resource transformations and queue improvements. He demonstrates a new elegant way to transform Eloquent models for API responses using resources and collections, along with new queue features like time-based expirations and rate limiting with Redis. The talk includes live coding examples and covers conditional data transformations, relationship handling, and customizable response formats.