Tag: architecture
Denormalised views of domain data built by processing event streams — the read side of CQRS, optimised for query performance rather than write consistency.
3mo ago
Architecture advanced
Read Replicas & Database Scaling
PHP 5.0+
Directing read queries to replica servers while writes go to the primary — a simple way to scale read throughput horizontally without sharding.
3mo ago
Performance intermediate
REST (Representational State Transfer)
1
An architectural style for distributed hypermedia systems using HTTP verbs, stateless interactions, and resource-oriented URLs.
3mo ago
Architecture beginner
REST Architectural Constraints
PHP 5.0+
The six constraints Fielding defined for REST — statelessness, uniform interface, client-server separation, cacheability, layered system, and optional code on demand.
3mo ago
API Design intermediate
Automatically retrying failed operations with increasing delays — preventing thundering herd and handling transient failures gracefully.
3mo ago
Architecture intermediate
Abstracts the data persistence layer behind an interface, decoupling domain logic from database implementation details.
3mo ago
General intermediate