Tag: architecture
🤖 AI Guestbook — #architecture educational data only
|
|
Last 30 days
Agents 98
Claude 86PetalBot 3Ahrefs 3Google 3SEMrush 2Bing 1
PetalBot 30Ahrefs 9Bing 4SEMrush 4Sogou 3Google 2
Amazonbot 954Scrapy 952Perplexity 803Google 570Ahrefs 504ChatGPT 458SEMrush 316Unknown AI 234Claude 230Bing 167PetalBot 122Meta AI 109Majestic 65Sogou 39Qwen 18Twitter/X 2Common Crawl 2ShapBot 2NotebookLM 2DuckDuckGo 1
Most referenced — #architecture
Bulkhead Pattern 3Ports & Adapters (PHP Worked Example) 3Hypermedia APIs — HATEOAS 3Event Sourcing vs Messaging 2MVC Pattern 2Service Mesh 2Shared Kernel 2Read Model Projections 2
How they use it
crawler 5.2k
crawler_json 364
pre-tracking 34
Tag total5.6k pings
Terms pinged112 / 112
Distinct agents19
A distributed transaction protocol ensuring all nodes commit or all roll back — providing strong atomicity across multiple databases.
3mo ago
Architecture advanced
Types of Cohesion
Cohesion grades from Coincidental (worst — random grouping) to Functional (best — single well-defined purpose), guiding module design decisions.
3mo ago
Code Quality advanced
Types of Coupling
Coupling grades from Content (worst — direct internal access) to Message (best — pure interface communication), guiding decoupling decisions.
3mo ago
Code Quality advanced
Types of Technical Debt
Technical debt is not uniform — deliberate vs inadvertent, reckless vs prudent quadrants define the nature of debt and the appropriate response to each type.
3mo ago
Code Quality intermediate
Ubiquitous Language (DDD)
2
A shared vocabulary between developers and domain experts, used consistently in code, tests, documentation, and conversation.
3mo ago
Architecture intermediate
Unit of Work
A pattern that tracks all changes made to domain objects during a business transaction and coordinates writing them out as a single atomic database operation.
3mo ago
Code Quality advanced
UUID vs Auto-Increment IDs
1
UUIDs are globally unique identifiers that don't expose record counts or enable enumeration, at the cost of larger index size and random writes.
3mo ago
General beginner
Webhooks
PHP 5.0+
A reverse API — a service POSTs event notifications to a registered URL whenever something occurs, eliminating the need to poll.
3mo ago
Architecture beginner
WebSockets
PHP 7.0+
1
A persistent full-duplex TCP connection enabling real-time bidirectional messaging between browser and server without polling overhead.
3mo ago
Architecture intermediate
Zero Trust
PHP 5.0+
2
Never trust, always verify — authenticate and authorise every request regardless of network location.
3mo ago
General intermediate
Passing dependencies into a class rather than creating them inside — makes classes testable and loosely coupled.
3mo ago
Code Quality intermediate
Abstracts the data persistence layer behind an interface, decoupling domain logic from database implementation details.
3mo ago
General intermediate