← Home ← Codex ← DEBT
Browse by Category
+ added · updated 7d
🤖 AI Guestbook — #architecture educational data only
| |
Last 30 days
18 pings — 2026-05-26 T 50 pings — 2026-05-27 W 114 pings — 2026-05-28 T 21 pings — 2026-05-29 F 15 pings — 2026-05-30 S 20 pings — 2026-05-31 S 26 pings — 2026-06-01 M 22 pings — 2026-06-02 T 65 pings — 2026-06-03 W 117 pings — 2026-06-04 T 156 pings — 2026-06-05 F 153 pings — 2026-06-06 S 276 pings — 2026-06-07 S 205 pings — 2026-06-08 M 128 pings — 2026-06-09 T 59 pings — 2026-06-10 W 57 pings — 2026-06-11 T 38 pings — 2026-06-12 F 39 pings — 2026-06-13 S 9 pings — 2026-06-14 S 26 pings — 2026-06-15 M 34 pings — 2026-06-16 T 16 pings — 2026-06-17 W 39 pings — 2026-06-18 T 16 pings — 2026-06-19 F 40 pings — 2026-06-20 S 60 pings — 2026-06-21 S 61 pings — 2026-06-22 M 52 pings — Yesterday T 14 pings — Today W
Claude 11Google 2PetalBot 1
PetalBot 30Ahrefs 9Bing 4SEMrush 4Sogou 3Google 2
Amazonbot 954Scrapy 952Perplexity 803Google 569Ahrefs 501ChatGPT 458SEMrush 314Unknown AI 234Bing 166Claude 155PetalBot 120Meta AI 109Majestic 65Sogou 39Qwen 18Twitter/X 2Common Crawl 2ShapBot 2NotebookLM 2DuckDuckGo 1
crawler 5.1k crawler_json 363 pre-tracking 34
Tag total5.5k pings Terms pinged112 / 112 Distinct agents19
Level All Beginner Intermediate Advanced Tag: architecture
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
Cloud Multi-Tenancy PHP 8.0+ 🧠 3
Serving multiple customers (tenants) from shared infrastructure while keeping their data and behaviour isolated.
2w ago Cloud intermediate
Mixture of Experts (MoE)
Neural network architecture where a gating network routes each token to a small subset of specialist 'expert' sub-networks, enabling huge total parameter counts at moderate per-token compute cost.
2mo ago AI / ML advanced
API Versioning 🧠 1
Strategies for evolving an API without breaking existing consumers — URI versioning, header versioning, and content negotiation.
3mo ago API Design intermediate
Concurrency vs Parallelism
Concurrency is about dealing with multiple tasks at once (structuring); parallelism is actually executing multiple tasks simultaneously (hardware). You can have one without the other.
3mo ago Concurrency beginner
CQRS Pattern PHP 7.0+
Command Query Responsibility Segregation — separating the write model (commands that change state) from the read model (queries that return data), allowing each to be optimised independently.
3mo ago Messaging advanced
Event Sourcing vs Messaging 🧠 1
Event sourcing stores all state changes as immutable events (the source of truth) — messaging delivers events between services. They complement each other but serve different purposes.
3mo ago Messaging intermediate
IoC Container PHP 7.0+
An Inversion of Control container automatically resolves and injects class dependencies — you declare what a class needs, the container figures out how to create it, eliminating manual dependency wiring.
3mo ago Code Quality intermediate
Message Queue Patterns
Core messaging patterns — competing consumers, scatter-gather, request-reply, message filter, and routing slip — solve recurring distributed communication challenges.
3mo ago Messaging intermediate
MVC Pattern PHP 5.0+
Model-View-Controller — an architectural pattern separating data (Model), presentation (View), and request handling (Controller), the foundation of Laravel, Symfony, and most PHP frameworks.
3mo ago Architecture beginner
OLAP vs OLTP
OLTP (Online Transaction Processing) optimises for many small, fast read/write operations — your main application database. OLAP (Online Analytical Processing) optimises for few, large analytical queries scanning millions of rows — your reporting and analytics database.
3mo ago Database intermediate
PHP Execution Model — Shared-Nothing Architecture PHP 5.0+
Each PHP request runs in a completely isolated process or thread — no memory, globals, or state is shared between requests. Every request bootstraps the entire application from scratch and discards everything when it ends.
3mo ago PHP intermediate
Diagram: Aggregate Design Heuristics Aggregate Design Heuristics PHP 7.0+ 🧠 3
Rules for sizing aggregates correctly — small aggregates with single-entity transactions, referencing other aggregates by ID, and designing boundaries around invariants not convenience.
3mo ago Architecture advanced
API Composition Pattern 🧠 1
An API layer aggregates parallel service calls into a single client response — reducing N round trips to 1 and improving perceived latency.
3mo ago Architecture advanced
Diagram: Backends for Frontends (BFF) Backends for Frontends (BFF) PHP 7.0+ 🧠 1
A dedicated API layer per frontend client (mobile app, web app, third-party) — each BFF aggregates and transforms microservice data for its specific client's needs.
3mo ago Architecture advanced
Cloud-Native Patterns PHP 5.0+ 🧠 1
Stateless services, externalised config, health checks, graceful shutdown, and immutable infrastructure — the 12-Factor App extended for containers.
3mo ago Cloud intermediate
Conformist Pattern
A context mapping relationship where the downstream team adopts the upstream team's model wholesale — accepting the upstream language rather than building a translation layer.
3mo ago Architecture advanced
Data Mesh Architecture
Decentralised data architecture where domain teams own and publish their data as products — replacing centralised data lakes that create engineering bottlenecks.
3mo ago Architecture advanced
Diagram: Database Triggers Database Triggers PHP 5.0+
Stored procedures that fire automatically on INSERT, UPDATE, or DELETE — useful for audit logs and enforcing constraints, but dangerous when they become hidden business logic.
3mo ago Database intermediate
Document Stores PHP 7.0+ 🧠 2
Databases that store semi-structured documents (JSON/BSON) — MongoDB, CouchDB — flexible schema, nested data, and horizontal scaling at the cost of no joins and eventual consistency.
3mo ago Database intermediate
Domain Model Pattern
An object model of the domain that incorporates both behaviour and data — entities with methods expressing domain operations rather than just data containers.
3mo ago Code Quality advanced
✓ schema.org compliant