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.
2mo 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.
2mo ago
performance intermediate
REST (Representational State Transfer)
An architectural style for distributed hypermedia systems using HTTP verbs, stateless interactions, and resource-oriented URLs.
2mo 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.
2mo ago
api_design intermediate
Automatically retrying failed operations with increasing delays — preventing thundering herd and handling transient failures gracefully.
2mo ago
architecture intermediate
Abstracts the data persistence layer behind an interface, decoupling domain logic from database implementation details.
2mo ago
general intermediate